Interface CfnDomain.DockerSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.DockerSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.DockerSettingsProperty
extends software.amazon.jsii.JsiiSerializable
A collection of settings that configure the domain's Docker interaction.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
DockerSettingsProperty dockerSettingsProperty = DockerSettingsProperty.builder()
.enableDockerAccess("enableDockerAccess")
.vpcOnlyTrustedAccounts(List.of("vpcOnlyTrustedAccounts"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.DockerSettingsPropertystatic final classAn implementation forCfnDomain.DockerSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableDockerAccess
Indicates whether the domain can access Docker.- See Also:
-
getVpcOnlyTrustedAccounts
The list of AWS accounts that are trusted when the domain is created in VPC-only mode.- See Also:
-
builder
-