interface DockerSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDomainPropsMixin.DockerSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDomainPropsMixin_DockerSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDomainPropsMixin.DockerSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDomainPropsMixin.DockerSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDomainPropsMixin » DockerSettingsProperty |
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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const dockerSettingsProperty: sagemaker_mixins.CfnDomainPropsMixin.DockerSettingsProperty = {
enableDockerAccess: 'enableDockerAccess',
vpcOnlyTrustedAccounts: ['vpcOnlyTrustedAccounts'],
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | string | Indicates whether the domain can access Docker. |
| vpc | string[] | The list of AWS accounts that are trusted when the domain is created in VPC-only mode. |
enableDockerAccess?
Type:
string
(optional)
Indicates whether the domain can access Docker.
vpcOnlyTrustedAccounts?
Type:
string[]
(optional)
The list of AWS accounts that are trusted when the domain is created in VPC-only mode.

.NET
Go
Java
Python
TypeScript