Interface ApiDefinitionS3Location
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ApiDefinitionS3Location.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.693Z")
@Stability(Stable)
public interface ApiDefinitionS3Location
extends software.amazon.jsii.JsiiSerializable
S3 location of the API definition file.
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.apigateway.*;
ApiDefinitionS3Location apiDefinitionS3Location = ApiDefinitionS3Location.builder()
.bucket("bucket")
.key("key")
// the properties below are optional
.version("version")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forApiDefinitionS3Locationstatic final classAn implementation forApiDefinitionS3Location -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The S3 bucket. -
getKey
The S3 key. -
getVersion
An optional version.Default: - latest version
-
builder
- Returns:
- a
ApiDefinitionS3Location.BuilderofApiDefinitionS3Location
-