CfnDictionaryProps

class aws_cdk.aws_elementalinference.CfnDictionaryProps(*, language, name, entries=None, tags=None)

Bases: object

Properties for defining a CfnDictionary.

Parameters:
  • language (str)

  • name (str)

  • entries (Optional[str])

  • tags (Optional[Mapping[str, str]])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-dictionary.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_elementalinference as elementalinference

cfn_dictionary_props = elementalinference.CfnDictionaryProps(
    language="language",
    name="name",

    # the properties below are optional
    entries="entries",
    tags={
        "tags_key": "tags"
    }
)

Attributes

entries

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-dictionary.html#cfn-elementalinference-dictionary-entries

Type:

see

language

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-dictionary.html#cfn-elementalinference-dictionary-language

Type:

see

name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-dictionary.html#cfn-elementalinference-dictionary-name

Type:

see

tags

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elementalinference-dictionary.html#cfn-elementalinference-dictionary-tags

Type:

see