interface DictionaryReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ElementalInference.DictionaryReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awselementalinference#DictionaryReference |
Java | software.amazon.awscdk.interfaces.elementalinference.DictionaryReference |
Python | aws_cdk.interfaces.aws_elementalinference.DictionaryReference |
TypeScript | aws-cdk-lib » interfaces » aws_elementalinference » DictionaryReference |
A reference to a Dictionary resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elementalinference as interfaces_elementalinference } from 'aws-cdk-lib/interfaces';
const dictionaryReference: interfaces_elementalinference.DictionaryReference = {
dictionaryArn: 'dictionaryArn',
dictionaryId: 'dictionaryId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dictionary | string | The ARN of the Dictionary resource. |
| dictionary | string | The Id of the Dictionary resource. |
dictionaryArn
Type:
string
The ARN of the Dictionary resource.
dictionaryId
Type:
string
The Id of the Dictionary resource.

.NET
Go
Java
Python
TypeScript