interface DomainResultProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnDistributionTenantPropsMixin.DomainResultProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnDistributionTenantPropsMixin_DomainResultProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnDistributionTenantPropsMixin.DomainResultProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionTenantPropsMixin.DomainResultProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnDistributionTenantPropsMixin » DomainResultProperty |
The details about the domain result.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const domainResultProperty: cloudfront_mixins.CfnDistributionTenantPropsMixin.DomainResultProperty = {
domain: 'domain',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain? | string | The specified domain. |
| status? | string | Whether the domain is active or inactive. |
domain?
Type:
string
(optional)
The specified domain.
status?
Type:
string
(optional)
Whether the domain is active or inactive.

.NET
Go
Java
Python
TypeScript