interface CfnDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeArtifact.CfnDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodeartifact#CfnDomainMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.codeartifact.CfnDomainMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_codeartifact.CfnDomainMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codeartifact » 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 { aws_codeartifact as codeartifact } from '@aws-cdk/cfn-property-mixins';
declare const permissionsPolicyDocument: any;
const cfnDomainMixinProps: codeartifact.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