Show / Hide Table of Contents

Class CfnDomainMixinProps

Properties for CfnDomainPropsMixin.

Inheritance
object
CfnDomainMixinProps
Implements
ICfnDomainMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CodeArtifact
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDomainMixinProps : ICfnDomainMixinProps
Syntax (vb)
Public Class CfnDomainMixinProps Implements 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.CfnPropertyMixins.AWS.CodeArtifact;

             var permissionsPolicyDocument;

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

Synopsis

Constructors

CfnDomainMixinProps()

Properties for CfnDomainPropsMixin.

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.

Constructors

CfnDomainMixinProps()

Properties for CfnDomainPropsMixin.

public CfnDomainMixinProps()
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.CfnPropertyMixins.AWS.CodeArtifact;

             var permissionsPolicyDocument;

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

Properties

DomainName

A string that specifies the name of the requested domain.

public string? DomainName { get; set; }
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.

public string? EncryptionKey { get; set; }
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.

public object? PermissionsPolicyDocument { get; set; }
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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnDomainMixinProps
Back to top Generated by DocFX