Interface ArtifactsBucketLocation
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ArtifactsBucketLocation.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-16T19:21:19.995Z")
@Stability(Deprecated)
@Deprecated
public interface ArtifactsBucketLocation
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Options for specifying the s3 location that stores the data of each canary run.
The artifacts bucket location cannot be updated once the canary is created.
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.synthetics.alpha.*;
import software.amazon.awscdk.services.s3.*;
Bucket bucket;
ArtifactsBucketLocation artifactsBucketLocation = ArtifactsBucketLocation.builder()
.bucket(bucket)
// the properties below are optional
.prefix("prefix")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
Deprecated.(deprecated) The s3 location that stores the data of each run. -
getPrefix
Deprecated.(deprecated) The S3 bucket prefix.Specify this if you want a more specific path within the artifacts bucket.
Default: - no prefix
-
builder
Deprecated.- Returns:
- a
ArtifactsBucketLocation.BuilderofArtifactsBucketLocation
-