Class: Aws::ConfigService::Types::StoredQuery
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::StoredQuery
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Provides the details of a stored query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A unique description for the query.
-
#expression ⇒ String
The expression of the query.
-
#query_arn ⇒ String
Amazon Resource Name (ARN) of the query.
-
#query_id ⇒ String
The ID of the query.
-
#query_name ⇒ String
The name of the query.
Instance Attribute Details
#description ⇒ String
A unique description for the query.
8738 8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8738 class StoredQuery < Struct.new( :query_id, :query_arn, :query_name, :description, :expression) SENSITIVE = [] include Aws::Structure end |
#expression ⇒ String
The expression of the query. For example, SELECT resourceId,
resourceType,
supplementaryConfiguration.BucketVersioningConfiguration.status
WHERE resourceType = 'AWS::S3::Bucket' AND
supplementaryConfiguration.BucketVersioningConfiguration.status =
'Off'.
8738 8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8738 class StoredQuery < Struct.new( :query_id, :query_arn, :query_name, :description, :expression) SENSITIVE = [] include Aws::Structure end |
#query_arn ⇒ String
Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.
8738 8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8738 class StoredQuery < Struct.new( :query_id, :query_arn, :query_name, :description, :expression) SENSITIVE = [] include Aws::Structure end |
#query_id ⇒ String
The ID of the query.
8738 8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8738 class StoredQuery < Struct.new( :query_id, :query_arn, :query_name, :description, :expression) SENSITIVE = [] include Aws::Structure end |
#query_name ⇒ String
The name of the query.
8738 8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8738 class StoredQuery < Struct.new( :query_id, :query_arn, :query_name, :description, :expression) SENSITIVE = [] include Aws::Structure end |