Interface CfnSourceApiAssociationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSourceApiAssociationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.483Z") @Stability(Stable) public interface CfnSourceApiAssociationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSourceApiAssociation.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appsync.*;
 CfnSourceApiAssociationProps cfnSourceApiAssociationProps = CfnSourceApiAssociationProps.builder()
         .description("description")
         .mergedApiIdentifier("mergedApiIdentifier")
         .sourceApiAssociationConfig(SourceApiAssociationConfigProperty.builder()
                 .mergeType("mergeType")
                 .build())
         .sourceApiIdentifier("sourceApiIdentifier")
         .build();
 
  • Method Details

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description field of the association configuration.
    • getMergedApiIdentifier

      @Stability(Stable) @Nullable default String getMergedApiIdentifier()
      The identifier of the AppSync Merged API.

      This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.

    • getSourceApiAssociationConfig

      @Stability(Stable) @Nullable default Object getSourceApiAssociationConfig()
      The SourceApiAssociationConfig object data.
    • getSourceApiIdentifier

      @Stability(Stable) @Nullable default String getSourceApiIdentifier()
      The identifier of the AppSync Source API.

      This is generated by the AppSync service. In most cases, source APIs (especially in your account) only require the API ID value or ARN of the source API. However, source APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the source API.

    • builder

      @Stability(Stable) static CfnSourceApiAssociationProps.Builder builder()
      Returns:
      a CfnSourceApiAssociationProps.Builder of CfnSourceApiAssociationProps