interface CfnStoredQueryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Config.CfnStoredQueryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconfig#CfnStoredQueryMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.config.CfnStoredQueryMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_config.CfnStoredQueryMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_config » CfnStoredQueryMixinProps |
Properties for CfnStoredQueryPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-storedquery.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_config as config } from '@aws-cdk/cfn-property-mixins';
const cfnStoredQueryMixinProps: config.CfnStoredQueryMixinProps = {
queryDescription: 'queryDescription',
queryExpression: 'queryExpression',
queryName: 'queryName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| query | string | A unique description for the query. |
| query | string | The expression of the query. |
| query | string | The name of the query. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
queryDescription?
Type:
string
(optional)
A unique description for the query.
queryExpression?
Type:
string
(optional)
The expression of the query.
For example, SELECT resourceId, resourceType, supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status = 'Off'.
queryName?
Type:
string
(optional)
The name of the query.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript