Show / Hide Table of Contents

Class CfnDomain.DockerSettingsProperty

A collection of settings that configure the domain's Docker interaction.

Inheritance
object
CfnDomain.DockerSettingsProperty
Implements
CfnDomain.IDockerSettingsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomain.DockerSettingsProperty : CfnDomain.IDockerSettingsProperty
Syntax (vb)
Public Class CfnDomain.DockerSettingsProperty Implements CfnDomain.IDockerSettingsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-dockersettings.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Sagemaker;

             var dockerSettingsProperty = new DockerSettingsProperty {
                 EnableDockerAccess = "enableDockerAccess",
                 VpcOnlyTrustedAccounts = new [] { "vpcOnlyTrustedAccounts" }
             };

Synopsis

Constructors

DockerSettingsProperty()

A collection of settings that configure the domain's Docker interaction.

Properties

EnableDockerAccess

Indicates whether the domain can access Docker.

VpcOnlyTrustedAccounts

The list of AWS accounts that are trusted when the domain is created in VPC-only mode.

Constructors

DockerSettingsProperty()

A collection of settings that configure the domain's Docker interaction.

public DockerSettingsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-dockersettings.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Sagemaker;

             var dockerSettingsProperty = new DockerSettingsProperty {
                 EnableDockerAccess = "enableDockerAccess",
                 VpcOnlyTrustedAccounts = new [] { "vpcOnlyTrustedAccounts" }
             };

Properties

EnableDockerAccess

Indicates whether the domain can access Docker.

public string? EnableDockerAccess { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-dockersettings.html#cfn-sagemaker-domain-dockersettings-enabledockeraccess

VpcOnlyTrustedAccounts

The list of AWS accounts that are trusted when the domain is created in VPC-only mode.

public string[]? VpcOnlyTrustedAccounts { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-dockersettings.html#cfn-sagemaker-domain-dockersettings-vpconlytrustedaccounts

Implements

CfnDomain.IDockerSettingsProperty
Back to top Generated by DocFX