@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:55.555Z") @Stability(value=Experimental) public interface SourceConfig extends software.amazon.jsii.JsiiSerializable
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()
(experimental) The source bucket to deploy from.
|
default Map<String,Object> |
getMarkers()
(experimental) A set of markers to substitute in the source content.
|
String |
getZipObjectKey()
(experimental) An S3 object key in the source bucket that points to a zip file.
|
@Stability(value=Experimental) @NotNull IBucket getBucket()
@Stability(value=Experimental) @NotNull String getZipObjectKey()
@Stability(value=Experimental) @Nullable default Map<String,Object> getMarkers()
Default: - no markers
@Stability(value=Experimental) static SourceConfig.Builder builder()
SourceConfig.Builder of SourceConfigCopyright © 2022. All rights reserved.