interface CfnDomainProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cases.CfnDomainProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscases#CfnDomainProps |
Java | software.amazon.awscdk.services.cases.CfnDomainProps |
Python | aws_cdk.aws_cases.CfnDomainProps |
TypeScript | aws-cdk-lib » aws_cases » CfnDomainProps |
Properties for defining a CfnDomain.
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-lib';
const cfnDomainProps: cases.CfnDomainProps = {
name: 'name',
// the properties below are optional
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
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