Interface GlobalNetwork.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GlobalNetwork.Builder,GlobalNetwork>,SdkBuilder<GlobalNetwork.Builder,GlobalNetwork>,SdkPojo
- Enclosing class:
- GlobalNetwork
public static interface GlobalNetwork.Builder extends SdkPojo, CopyableBuilder<GlobalNetwork.Builder,GlobalNetwork>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GlobalNetwork.BuildercreatedAt(Instant createdAt)The date and time that the global network was created.GlobalNetwork.Builderdescription(String description)The description of the global network.GlobalNetwork.BuilderglobalNetworkArn(String globalNetworkArn)The Amazon Resource Name (ARN) of the global network.GlobalNetwork.BuilderglobalNetworkId(String globalNetworkId)The ID of the global network.GlobalNetwork.Builderstate(String state)The state of the global network.GlobalNetwork.Builderstate(GlobalNetworkState state)The state of the global network.GlobalNetwork.Buildertags(Collection<Tag> tags)The tags for the global network.GlobalNetwork.Buildertags(Consumer<Tag.Builder>... tags)The tags for the global network.GlobalNetwork.Buildertags(Tag... tags)The tags for the global network.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
globalNetworkId
GlobalNetwork.Builder globalNetworkId(String globalNetworkId)
The ID of the global network.
- Parameters:
globalNetworkId- The ID of the global network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
globalNetworkArn
GlobalNetwork.Builder globalNetworkArn(String globalNetworkArn)
The Amazon Resource Name (ARN) of the global network.
- Parameters:
globalNetworkArn- The Amazon Resource Name (ARN) of the global network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GlobalNetwork.Builder description(String description)
The description of the global network.
- Parameters:
description- The description of the global network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
GlobalNetwork.Builder createdAt(Instant createdAt)
The date and time that the global network was created.
- Parameters:
createdAt- The date and time that the global network was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
GlobalNetwork.Builder state(String state)
The state of the global network.
- Parameters:
state- The state of the global network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GlobalNetworkState,GlobalNetworkState
-
state
GlobalNetwork.Builder state(GlobalNetworkState state)
The state of the global network.
- Parameters:
state- The state of the global network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GlobalNetworkState,GlobalNetworkState
-
tags
GlobalNetwork.Builder tags(Collection<Tag> tags)
The tags for the global network.
- Parameters:
tags- The tags for the global network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GlobalNetwork.Builder tags(Tag... tags)
The tags for the global network.
- Parameters:
tags- The tags for the global network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GlobalNetwork.Builder tags(Consumer<Tag.Builder>... tags)
The tags for the global network.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-