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