interface DomainResultProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnDistributionTenantPropsMixin.DomainResultProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnDistributionTenantPropsMixin_DomainResultProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnDistributionTenantPropsMixin.DomainResultProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnDistributionTenantPropsMixin.DomainResultProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » 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 { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const domainResultProperty: cloudfront.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