interface GetContextKeyResult
| Language | Type name |
|---|---|
.NET | Amazon.CDK.GetContextKeyResult |
Java | software.amazon.awscdk.core.GetContextKeyResult |
Python | aws_cdk.core.GetContextKeyResult |
TypeScript (source) | @aws-cdk/core » GetContextKeyResult |
Obtainable from
Context.getKey()
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from '@aws-cdk/core';
declare const props: any;
const getContextKeyResult: cdk.GetContextKeyResult = {
key: 'key',
props: {
propsKey: props,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | |
| props | { [string]: any } |
key
Type:
string
props
Type:
{ [string]: any }

.NET
Java
Python
TypeScript (