interface CfnDomainNameApiAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.CfnDomainNameApiAssociationProps |
Java | software.amazon.awscdk.services.appsync.CfnDomainNameApiAssociationProps |
Python | aws_cdk.aws_appsync.CfnDomainNameApiAssociationProps |
TypeScript | @aws-cdk/aws-appsync » CfnDomainNameApiAssociationProps |
Properties for defining a CfnDomainNameApiAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appsync from '@aws-cdk/aws-appsync';
const cfnDomainNameApiAssociationProps: appsync.CfnDomainNameApiAssociationProps = {
apiId: 'apiId',
domainName: 'domainName',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API ID. |
| domain | string | The domain name. |
apiId
Type:
string
The API ID.
domainName
Type:
string
The domain name.

.NET
Java
Python
TypeScript