Interface ICfnDomainProps
Properties for defining a CfnDomain
.
Namespace: Amazon.CDK.AWS.CodeArtifact
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDomainProps
Syntax (vb)
Public Interface ICfnDomainProps
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.AWS.CodeArtifact;
var permissionsPolicyDocument;
var cfnDomainProps = new CfnDomainProps {
DomainName = "domainName",
// the properties below are optional
EncryptionKey = "encryptionKey",
PermissionsPolicyDocument = permissionsPolicyDocument,
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Domain |
A string that specifies the name of the requested domain. |
Encryption |
The key used to encrypt the domain. |
Permissions |
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
System.
Remarks
EncryptionKey
The key used to encrypt the domain.
virtual string EncryptionKey { get; }
Property Value
System.
Remarks
PermissionsPolicyDocument
The document that defines the resource policy that is set on a domain.
virtual object PermissionsPolicyDocument { get; }
Property Value
System.
Remarks
Tags
A list of tags to be applied to the domain.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn