Interface CfnProject.S3DestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProject.S3DestinationProperty.Jsii$Proxy
- Enclosing class:
CfnProject
@Stability(Stable)
public static interface CfnProject.S3DestinationProperty
extends software.amazon.jsii.JsiiSerializable
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
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.evidently.*; S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder() .bucketName("bucketName") // the properties below are optional .prefix("prefix") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProject.S3DestinationProperty
static final class
An implementation forCfnProject.S3DestinationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The name of the bucket in which Evidently stores evaluation events.- See Also:
-
getPrefix
The bucket prefix in which Evidently stores evaluation events.- See Also:
-
builder
-