Interface DirectoryVpcSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DirectoryVpcSettings.Builder,DirectoryVpcSettings>,SdkBuilder<DirectoryVpcSettings.Builder,DirectoryVpcSettings>,SdkPojo
- Enclosing class:
- DirectoryVpcSettings
public static interface DirectoryVpcSettings.Builder extends SdkPojo, CopyableBuilder<DirectoryVpcSettings.Builder,DirectoryVpcSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DirectoryVpcSettings.BuildersubnetIds(String... subnetIds)The identifiers of the subnets for the directory servers.DirectoryVpcSettings.BuildersubnetIds(Collection<String> subnetIds)The identifiers of the subnets for the directory servers.DirectoryVpcSettings.BuildervpcId(String vpcId)The identifier of the VPC in which to create the directory.-
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
-
vpcId
DirectoryVpcSettings.Builder vpcId(String vpcId)
The identifier of the VPC in which to create the directory.
- Parameters:
vpcId- The identifier of the VPC in which to create the directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
DirectoryVpcSettings.Builder subnetIds(Collection<String> subnetIds)
The identifiers of the subnets for the directory servers. The two subnets must be in different Availability Zones. Directory Service creates a directory server and a DNS server in each of these subnets.
- Parameters:
subnetIds- The identifiers of the subnets for the directory servers. The two subnets must be in different Availability Zones. Directory Service creates a directory server and a DNS server in each of these subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
DirectoryVpcSettings.Builder subnetIds(String... subnetIds)
The identifiers of the subnets for the directory servers. The two subnets must be in different Availability Zones. Directory Service creates a directory server and a DNS server in each of these subnets.
- Parameters:
subnetIds- The identifiers of the subnets for the directory servers. The two subnets must be in different Availability Zones. Directory Service creates a directory server and a DNS server in each of these subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-