Class: Aws::IoT::Types::ListManagedJobTemplatesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListManagedJobTemplatesRequest
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass ListManagedJobTemplatesRequest data as a hash:
{
template_name: "ManagedJobTemplateName",
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Maximum number of entries that can be returned.
-
#next_token ⇒ String
The token to retrieve the next set of results.
-
#template_name ⇒ String
An optional parameter for template name.
Instance Attribute Details
#max_results ⇒ Integer
Maximum number of entries that can be returned.
12260 12261 12262 12263 12264 12265 12266 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12260 class ListManagedJobTemplatesRequest < Struct.new( :template_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to retrieve the next set of results.
12260 12261 12262 12263 12264 12265 12266 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12260 class ListManagedJobTemplatesRequest < Struct.new( :template_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#template_name ⇒ String
An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.
12260 12261 12262 12263 12264 12265 12266 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12260 class ListManagedJobTemplatesRequest < Struct.new( :template_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |