interface StringSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnDistribution.StringSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnDistribution_StringSchemaProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnDistribution.StringSchemaProperty |
Python | aws_cdk.aws_cloudfront.CfnDistribution.StringSchemaProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnDistribution » StringSchemaProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const stringSchemaProperty: cloudfront.CfnDistribution.StringSchemaProperty = {
required: false,
// the properties below are optional
comment: 'comment',
defaultValue: 'defaultValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| required | boolean | IResolvable | |
| comment? | string | |
| default | string |
required
Type:
boolean | IResolvable
comment?
Type:
string
(optional)
defaultValue?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript