Class: Aws::Proton::Types::ListServiceTemplatesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::ListServiceTemplatesInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
Note:
When making an API call, you may pass ListServiceTemplatesInput data as a hash:
{
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of service templates to list.
-
#next_token ⇒ String
A token that indicates the location of the next service template in the array of service templates, after the list of service templates previously requested.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of service templates to list.
3884 3885 3886 3887 3888 3889 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3884 class ListServiceTemplatesInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates the location of the next service template in the array of service templates, after the list of service templates previously requested.
3884 3885 3886 3887 3888 3889 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3884 class ListServiceTemplatesInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |