Class CfnDomainMixinProps
Properties for CfnDomainPropsMixin.
Implements
Inherited Members
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
Remarks
EncryptionKey
The key used to encrypt the domain.
public string? EncryptionKey { get; set; }
Property Value
Remarks
PermissionsPolicyDocument
The document that defines the resource policy that is set on a domain.
public object? PermissionsPolicyDocument { get; set; }
Property Value
Remarks
Tags
A list of tags to be applied to the domain.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]