Interface NoneDataSourceProps

All Superinterfaces:
BaseDataSourceProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
NoneDataSourceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)", date="2026-01-19T12:03:47.100Z") @Stability(Stable) public interface NoneDataSourceProps extends software.amazon.jsii.JsiiSerializable, BaseDataSourceProps
Properties for an AppSync dummy datasource.

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.*;
 import software.amazon.awscdk.interfaces.appsync.*;
 IGraphQLApiRef graphQLApiRef;
 NoneDataSourceProps noneDataSourceProps = NoneDataSourceProps.builder()
         .api(graphQLApiRef)
         // the properties below are optional
         .description("description")
         .name("name")
         .build();