interface CfnStoredQueryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Config.Mixins.CfnStoredQueryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconfig/mixins#CfnStoredQueryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.config.mixins.CfnStoredQueryMixinProps |
Python | aws_cdk.mixins_preview.aws_config.mixins.CfnStoredQueryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_config » mixins » 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 { mixins as config_mixins } from '@aws-cdk/mixins-preview/aws-config';
const cfnStoredQueryMixinProps: config_mixins.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