interface CfnDictionaryProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElementalInference.CfnDictionaryProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselementalinference#CfnDictionaryProps |
Java | software.amazon.awscdk.services.elementalinference.CfnDictionaryProps |
Python | aws_cdk.aws_elementalinference.CfnDictionaryProps |
TypeScript | aws-cdk-lib » aws_elementalinference » CfnDictionaryProps |
Properties for defining a CfnDictionary.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elementalinference as elementalinference } from 'aws-cdk-lib';
const cfnDictionaryProps: elementalinference.CfnDictionaryProps = {
language: 'language',
name: 'name',
// the properties below are optional
entries: 'entries',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| language | string | |
| name | string | |
| entries? | string | |
| tags? | { [string]: string } |
language
Type:
string
name
Type:
string
entries?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript