Interface CfnApi.BodyS3LocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApi.BodyS3LocationProperty.Jsii$Proxy
Enclosing class:
CfnApi

@Stability(Stable) public static interface CfnApi.BodyS3LocationProperty extends software.amazon.jsii.JsiiSerializable
The BodyS3Location property specifies an S3 location from which to import an OpenAPI definition.

Supported only for HTTP APIs.

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.apigatewayv2.*;
 BodyS3LocationProperty bodyS3LocationProperty = BodyS3LocationProperty.builder()
         .bucket("bucket")
         .etag("etag")
         .key("key")
         .version("version")
         .build();
 

See Also: