Interface ISourceConfig
Source information.
Namespace: Amazon.CDK.AWS.S3.Deployment
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISourceConfig
Syntax (vb)
Public Interface ISourceConfig
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3;
using Amazon.CDK.AWS.S3.Deployment;
Bucket bucket;
var markers;
var sourceConfig = new SourceConfig {
Bucket = bucket,
ZipObjectKey = "zipObjectKey",
// the properties below are optional
Markers = new Dictionary<string, object> {
{ "markersKey", markers }
}
};
Synopsis
Properties
Bucket | The source bucket to deploy from. |
Markers | A set of markers to substitute in the source content. |
Zip |
An S3 object key in the source bucket that points to a zip file. |
Properties
Bucket
Markers
A set of markers to substitute in the source content.
virtual IDictionary<string, object> Markers { get; }
Property Value
System.
Remarks
Default: - no markers
ZipObjectKey
An S3 object key in the source bucket that points to a zip file.
string ZipObjectKey { get; }
Property Value
System.