interface StoredQueryReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Config.StoredQueryReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconfig#StoredQueryReference |
Java | software.amazon.awscdk.interfaces.config.StoredQueryReference |
Python | aws_cdk.interfaces.aws_config.StoredQueryReference |
TypeScript | aws-cdk-lib » interfaces » aws_config » StoredQueryReference |
A reference to a StoredQuery resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_config as interfaces_aws_config } from 'aws-cdk-lib/interfaces';
const storedQueryReference: interfaces_aws_config.StoredQueryReference = {
queryName: 'queryName',
};
Properties
| Name | Type | Description |
|---|---|---|
| query | string | The QueryName of the StoredQuery resource. |
queryName
Type:
string
The QueryName of the StoredQuery resource.

.NET
Go
Java
Python
TypeScript