@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-13T01:13:37.524Z")
public interface SourceConfig
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.s3.*; import software.amazon.awscdk.services.s3.deployment.*; Bucket bucket; Object markers; SourceConfig sourceConfig = SourceConfig.builder() .bucket(bucket) .zipObjectKey("zipObjectKey") // the properties below are optional .markers(Map.of( "markersKey", markers)) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
SourceConfig.Builder
A builder for
SourceConfig |
static class |
SourceConfig.Jsii$Proxy
An implementation for
SourceConfig |
Modifier and Type | Method and Description |
---|---|
static SourceConfig.Builder |
builder() |
IBucket |
getBucket()
The source bucket to deploy from.
|
default java.util.Map<java.lang.String,java.lang.Object> |
getMarkers()
A set of markers to substitute in the source content.
|
java.lang.String |
getZipObjectKey()
An S3 object key in the source bucket that points to a zip file.
|
IBucket getBucket()
java.lang.String getZipObjectKey()
default java.util.Map<java.lang.String,java.lang.Object> getMarkers()
Default: - no markers
static SourceConfig.Builder builder()
SourceConfig.Builder
of SourceConfig