Interface CfnGraphQLSchemaMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGraphQLSchemaMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.001Z")
@Stability(Stable)
public interface CfnGraphQLSchemaMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnGraphQLSchemaPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appsync.*;
CfnGraphQLSchemaMixinProps cfnGraphQLSchemaMixinProps = CfnGraphQLSchemaMixinProps.builder()
.apiId("apiId")
.definition("definition")
.definitionS3Location("definitionS3Location")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGraphQLSchemaMixinPropsstatic final classAn implementation forCfnGraphQLSchemaMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetApiId()The AWS AppSync GraphQL API identifier to which you want to apply this schema.default StringThe text representation of a GraphQL schema in SDL format.default StringThe location of a GraphQL schema file in an Amazon S3 bucket.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The AWS AppSync GraphQL API identifier to which you want to apply this schema.- See Also:
-
getDefinition
The text representation of a GraphQL schema in SDL format.For more information about using the
Reffunction, see Ref .- See Also:
-
getDefinitionS3Location
The location of a GraphQL schema file in an Amazon S3 bucket.Use this if you want to provision with the schema living in Amazon S3 rather than embedding it in your CloudFormation template.
- See Also:
-
builder
- Returns:
- a
CfnGraphQLSchemaMixinProps.BuilderofCfnGraphQLSchemaMixinProps
-