interface CfnDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnDomainMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnDomainMixinProps |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnDomainMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnDomainMixinProps |
Properties for CfnDomainPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-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 cases_mixins } from '@aws-cdk/mixins-preview/aws-cases';
const cfnDomainMixinProps: cases_mixins.CfnDomainMixinProps = {
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the domain. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
name?
Type:
string
(optional)
The name of the domain.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript