DictionaryReference
- class aws_cdk.interfaces.aws_elementalinference.DictionaryReference(*, dictionary_arn, dictionary_id)
Bases:
objectA reference to a Dictionary resource.
- Parameters:
dictionary_arn (
str) – The ARN of the Dictionary resource.dictionary_id (
str) – The Id of the Dictionary resource.
- 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.interfaces import aws_elementalinference as interfaces_elementalinference dictionary_reference = interfaces_elementalinference.DictionaryReference( dictionary_arn="dictionaryArn", dictionary_id="dictionaryId" )
Attributes
- dictionary_arn
The ARN of the Dictionary resource.
- dictionary_id
The Id of the Dictionary resource.