Show / Hide Table of Contents

Interface ICfnDomainMixinProps

Properties for CfnDomainPropsMixin.

Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeArtifact.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnDomainMixinProps
Syntax (vb)
Public Interface ICfnDomainMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.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.Mixins.Preview.AWS.CodeArtifact.Mixins;

             var permissionsPolicyDocument;

             var cfnDomainMixinProps = new CfnDomainMixinProps {
                 DomainName = "domainName",
                 EncryptionKey = "encryptionKey",
                 PermissionsPolicyDocument = permissionsPolicyDocument,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

DomainName

A string that specifies the name of the requested domain.

EncryptionKey

The key used to encrypt the domain.

PermissionsPolicyDocument

The document that defines the resource policy that is set on a domain.

Tags

A list of tags to be applied to the domain.

Properties

DomainName

A string that specifies the name of the requested domain.

string? DomainName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-domainname

EncryptionKey

The key used to encrypt the domain.

string? EncryptionKey { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-encryptionkey

PermissionsPolicyDocument

The document that defines the resource policy that is set on a domain.

object? PermissionsPolicyDocument { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-permissionspolicydocument

Tags

A list of tags to be applied to the domain.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-tags

Back to top Generated by DocFX