interface CfnTypeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnTypeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnTypeMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnTypeMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnTypeMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnTypeMixinProps |
Properties for CfnTypePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-type.html
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 cfnTypeMixinProps: appsync.CfnTypeMixinProps = {
apiId: 'apiId',
definition: 'definition',
format: 'format',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API ID. |
| definition? | string | The type definition, in GraphQL Schema Definition Language (SDL) format. |
| format? | string | The type format: SDL or JSON. |
apiId?
Type:
string
(optional)
The API ID.
definition?
Type:
string
(optional)
The type definition, in GraphQL Schema Definition Language (SDL) format.
format?
Type:
string
(optional)
The type format: SDL or JSON.

.NET
Go
Java
Python
TypeScript