Class: Aws::IoT::Types::ListV2LoggingLevelsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListV2LoggingLevelsRequest
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass ListV2LoggingLevelsRequest data as a hash:
{
target_type: "DEFAULT", # accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return at one time.
-
#next_token ⇒ String
To retrieve the next set of results, the
nextToken
value from a previous response; otherwise null to receive the first set of results. -
#target_type ⇒ String
The type of resource for which you are configuring logging.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return at one time.
13804 13805 13806 13807 13808 13809 13810 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13804 class ListV2LoggingLevelsRequest < Struct.new( :target_type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
To retrieve the next set of results, the nextToken
value from a
previous response; otherwise null to receive the first set of
results.
13804 13805 13806 13807 13808 13809 13810 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13804 class ListV2LoggingLevelsRequest < Struct.new( :target_type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#target_type ⇒ String
The type of resource for which you are configuring logging. Must be
THING_Group
.
13804 13805 13806 13807 13808 13809 13810 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13804 class ListV2LoggingLevelsRequest < Struct.new( :target_type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |