Class: Aws::ConfigService::Types::SelectResourceConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::SelectResourceConfigRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass SelectResourceConfigRequest data as a hash:
{
expression: "Expression", # required
limit: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expression ⇒ String
The SQL query
SELECT
command. -
#limit ⇒ Integer
The maximum number of query results returned on each page.
-
#next_token ⇒ String
The
nextToken
string returned in a previous request that you use to request the next page of results in a paginated response.
Instance Attribute Details
#expression ⇒ String
The SQL query SELECT
command.
8414 8415 8416 8417 8418 8419 8420 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8414 class SelectResourceConfigRequest < Struct.new( :expression, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of query results returned on each page.
8414 8415 8416 8417 8418 8419 8420 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8414 class SelectResourceConfigRequest < Struct.new( :expression, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
string returned in a previous request that you use
to request the next page of results in a paginated response.
8414 8415 8416 8417 8418 8419 8420 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8414 class SelectResourceConfigRequest < Struct.new( :expression, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |