interface MarkersConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3.Deployment.MarkersConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3deployment#MarkersConfig |
Java | software.amazon.awscdk.services.s3.deployment.MarkersConfig |
Python | aws_cdk.aws_s3_deployment.MarkersConfig |
TypeScript (source) | aws-cdk-lib » aws_s3_deployment » MarkersConfig |
A configuration for markers substitution strategy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3_deployment as s3_deployment } from 'aws-cdk-lib';
const markersConfig: s3_deployment.MarkersConfig = {
jsonEscape: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| json | boolean | If set to true, the marker substitution will make ure the value inserted in the file will be a valid JSON string. |
jsonEscape?
Type:
boolean
(optional, default: false)
If set to true, the marker substitution will make ure the value inserted in the file will be a valid JSON string.

.NET
Go
Java
Python
TypeScript (