Interface DockerSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DockerSettings.Builder,DockerSettings>,SdkBuilder<DockerSettings.Builder,DockerSettings>,SdkPojo
- Enclosing class:
- DockerSettings
public static interface DockerSettings.Builder extends SdkPojo, CopyableBuilder<DockerSettings.Builder,DockerSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DockerSettings.BuilderenableDockerAccess(String enableDockerAccess)Indicates whether the domain can access Docker.DockerSettings.BuilderenableDockerAccess(FeatureStatus enableDockerAccess)Indicates whether the domain can access Docker.DockerSettings.BuildervpcOnlyTrustedAccounts(String... vpcOnlyTrustedAccounts)The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.DockerSettings.BuildervpcOnlyTrustedAccounts(Collection<String> vpcOnlyTrustedAccounts)The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.-
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
-
enableDockerAccess
DockerSettings.Builder enableDockerAccess(String enableDockerAccess)
Indicates whether the domain can access Docker.
- Parameters:
enableDockerAccess- Indicates whether the domain can access Docker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FeatureStatus,FeatureStatus
-
enableDockerAccess
DockerSettings.Builder enableDockerAccess(FeatureStatus enableDockerAccess)
Indicates whether the domain can access Docker.
- Parameters:
enableDockerAccess- Indicates whether the domain can access Docker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FeatureStatus,FeatureStatus
-
vpcOnlyTrustedAccounts
DockerSettings.Builder vpcOnlyTrustedAccounts(Collection<String> vpcOnlyTrustedAccounts)
The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.
- Parameters:
vpcOnlyTrustedAccounts- The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcOnlyTrustedAccounts
DockerSettings.Builder vpcOnlyTrustedAccounts(String... vpcOnlyTrustedAccounts)
The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.
- Parameters:
vpcOnlyTrustedAccounts- The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-