interface CfnDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeArtifact.Mixins.CfnDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodeartifact/mixins#CfnDomainMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.codeartifact.mixins.CfnDomainMixinProps |
Python | aws_cdk.mixins_preview.aws_codeartifact.mixins.CfnDomainMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_codeartifact » mixins » CfnDomainMixinProps |
Properties for CfnDomainPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codeartifact_mixins } from '@aws-cdk/mixins-preview/aws-codeartifact';
declare const permissionsPolicyDocument: any;
const cfnDomainMixinProps: codeartifact_mixins.CfnDomainMixinProps = {
domainName: 'domainName',
encryptionKey: 'encryptionKey',
permissionsPolicyDocument: permissionsPolicyDocument,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | A string that specifies the name of the requested domain. |
| encryption | string | The key used to encrypt the domain. |
| permissions | any | The document that defines the resource policy that is set on a domain. |
| tags? | Cfn[] | A list of tags to be applied to the domain. |
domainName?
Type:
string
(optional)
A string that specifies the name of the requested domain.
encryptionKey?
Type:
string
(optional)
The key used to encrypt the domain.
permissionsPolicyDocument?
Type:
any
(optional)
The document that defines the resource policy that is set on a domain.
tags?
Type:
Cfn[]
(optional)
A list of tags to be applied to the domain.

.NET
Go
Java
Python
TypeScript