Interface NetworkConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<NetworkConfiguration.Builder,
,NetworkConfiguration> SdkBuilder<NetworkConfiguration.Builder,
,NetworkConfiguration> SdkPojo
- Enclosing class:
NetworkConfiguration
public static interface NetworkConfiguration.Builder
extends SdkPojo, CopyableBuilder<NetworkConfiguration.Builder,NetworkConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondefault NetworkConfiguration.Builder
awsvpcConfiguration
(Consumer<AwsVpcConfiguration.Builder> awsvpcConfiguration) The VPC subnets and security groups that are associated with a task.awsvpcConfiguration
(AwsVpcConfiguration awsvpcConfiguration) The VPC subnets and security groups that are associated with a task.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 Details
-
awsvpcConfiguration
The VPC subnets and security groups that are associated with a task.
All specified subnets and security groups must be from the same VPC.
- Parameters:
awsvpcConfiguration
- The VPC subnets and security groups that are associated with a task.All specified subnets and security groups must be from the same VPC.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
awsvpcConfiguration
default NetworkConfiguration.Builder awsvpcConfiguration(Consumer<AwsVpcConfiguration.Builder> awsvpcConfiguration) The VPC subnets and security groups that are associated with a task.
All specified subnets and security groups must be from the same VPC.
AwsVpcConfiguration.Builder
avoiding the need to create one manually viaAwsVpcConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toawsvpcConfiguration(AwsVpcConfiguration)
.- Parameters:
awsvpcConfiguration
- a consumer that will call methods onAwsVpcConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-