interface CfnDomainNameApiAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnDomainNameApiAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnDomainNameApiAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnDomainNameApiAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnDomainNameApiAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnDomainNameApiAssociationMixinProps |
Properties for CfnDomainNameApiAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as appsync } from '@aws-cdk/cfn-property-mixins';
const cfnDomainNameApiAssociationMixinProps: appsync.CfnDomainNameApiAssociationMixinProps = {
apiId: 'apiId',
domainName: 'domainName',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API ID. |
| domain | string | IDomain | The domain name. |
apiId?
Type:
string
(optional)
The API ID.
domainName?
Type:
string | IDomain
(optional)
The domain name.

.NET
Go
Java
Python
TypeScript