Interface CfnSimulation.S3LocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSimulation.S3LocationProperty.Jsii$Proxy
- Enclosing class:
CfnSimulation
@Stability(Stable)
public static interface CfnSimulation.S3LocationProperty
extends software.amazon.jsii.JsiiSerializable
A location in Amazon Simple Storage Service ( Amazon S3 ) where SimSpace Weaver stores simulation data, such as your app .zip files and schema file. For more information about Amazon S3 , see the Amazon Simple Storage Service User Guide .
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.simspaceweaver.*; S3LocationProperty s3LocationProperty = S3LocationProperty.builder() .bucketName("bucketName") .objectKey("objectKey") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSimulation.S3LocationProperty
static final class
An implementation forCfnSimulation.S3LocationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of an Amazon S3 bucket.The key name of an object in Amazon S3 .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The name of an Amazon S3 bucket.For more information about buckets, see Creating, configuring, and working with Amazon S3 buckets in the Amazon Simple Storage Service User Guide .
-
getObjectKey
The key name of an object in Amazon S3 .For more information about Amazon S3 objects and object keys, see Uploading, downloading, and working with objects in Amazon S3 in the Amazon Simple Storage Service User Guide .
-
builder
-