interface CfnDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnDomainMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnDomainMixinProps |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnDomainMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnDomainMixinProps |
Properties for CfnDomainPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-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 lightsail_mixins } from '@aws-cdk/mixins-preview/aws-lightsail';
const cfnDomainMixinProps: lightsail_mixins.CfnDomainMixinProps = {
domainEntries: [{
id: 'id',
isAlias: false,
name: 'name',
target: 'target',
type: 'type',
}],
domainName: 'domainName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | IResolvable | (IResolvable | Domain)[] | An array of key-value pairs containing information about the domain entries. |
| domain | string | The fully qualified domain name in the certificate request. |
| tags? | Cfn[] | The tag keys and optional values for the resource. |
domainEntries?
Type:
IResolvable | (IResolvable | Domain)[]
(optional)
An array of key-value pairs containing information about the domain entries.
domainName?
Type:
string
(optional)
The fully qualified domain name in the certificate request.
tags?
Type:
Cfn[]
(optional)
The tag keys and optional values for the resource.
For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide .

.NET
Go
Java
Python
TypeScript