Interface FileAssetLocation

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FileAssetLocation.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:10.070Z") @Stability(Stable) public interface FileAssetLocation extends software.amazon.jsii.JsiiSerializable
The location of the published file asset.

This is where the asset can be consumed at runtime.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 FileAssetLocation fileAssetLocation = FileAssetLocation.builder()
         .bucketName("bucketName")
         .httpUrl("httpUrl")
         .objectKey("objectKey")
         .s3ObjectUrl("s3ObjectUrl")
         // the properties below are optional
         .kmsKeyArn("kmsKeyArn")
         .s3ObjectUrlWithPlaceholders("s3ObjectUrlWithPlaceholders")
         .build();
 
  • Method Details

    • getBucketName

      @Stability(Stable) @NotNull String getBucketName()
      The name of the Amazon S3 bucket.
    • getHttpUrl

      @Stability(Stable) @NotNull String getHttpUrl()
      The HTTP URL of this asset on Amazon S3.

      This value suitable for inclusion in a CloudFormation template, and may be an encoded token.

      Example value: https://s3-us-east-1.amazonaws.com/mybucket/myobject

    • getObjectKey

      @Stability(Stable) @NotNull String getObjectKey()
      The Amazon S3 object key.
    • getS3ObjectUrl

      @Stability(Stable) @NotNull String getS3ObjectUrl()
      The S3 URL of this asset on Amazon S3.

      This value suitable for inclusion in a CloudFormation template, and may be an encoded token.

      Example value: s3://mybucket/myobject

    • getKmsKeyArn

      @Stability(Stable) @Nullable default String getKmsKeyArn()
      The ARN of the KMS key used to encrypt the file asset bucket, if any.

      The CDK bootstrap stack comes with a key policy that does not require setting this property, so you only need to set this property if you have customized the bootstrap stack to require it.

      Default: - Asset bucket is not encrypted, or decryption permissions are defined by a Key Policy.

    • getS3ObjectUrlWithPlaceholders

      @Stability(Stable) @Nullable default String getS3ObjectUrlWithPlaceholders()
      Like s3ObjectUrl, but not suitable for CloudFormation consumption.

      If there are placeholders in the S3 URL, they will be returned un-replaced and un-evaluated.

      Default: - This feature cannot be used

    • builder

      @Stability(Stable) static FileAssetLocation.Builder builder()
      Returns:
      a FileAssetLocation.Builder of FileAssetLocation