Class: Aws::Proton::Types::ListServiceTemplateVersionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::ListServiceTemplateVersionsInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
When making an API call, you may pass ListServiceTemplateVersionsInput data as a hash:
{
major_version: "TemplateVersionPart",
max_results: 1,
next_token: "NextToken",
template_name: "ResourceName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#major_version ⇒ String
To view a list of minor of versions under a major version of a service template, include
major Version
. -
#max_results ⇒ Integer
The maximum number of major or minor versions of a service template to list.
-
#next_token ⇒ String
A token that indicates the location of the next major or minor version in the array of major or minor versions of a service template, after the list of major or minor versions that was previously requested.
-
#template_name ⇒ String
The name of the service template.
Instance Attribute Details
#major_version ⇒ String
To view a list of minor of versions under a major version of a
service template, include major Version
.
To view a list of major versions of a service template, exclude
major Version
.
3834 3835 3836 3837 3838 3839 3840 3841 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3834 class ListServiceTemplateVersionsInput < Struct.new( :major_version, :max_results, :next_token, :template_name) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of major or minor versions of a service template to list.
3834 3835 3836 3837 3838 3839 3840 3841 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3834 class ListServiceTemplateVersionsInput < Struct.new( :major_version, :max_results, :next_token, :template_name) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates the location of the next major or minor version in the array of major or minor versions of a service template, after the list of major or minor versions that was previously requested.
3834 3835 3836 3837 3838 3839 3840 3841 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3834 class ListServiceTemplateVersionsInput < Struct.new( :major_version, :max_results, :next_token, :template_name) SENSITIVE = [] include Aws::Structure end |
#template_name ⇒ String
The name of the service template.
3834 3835 3836 3837 3838 3839 3840 3841 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3834 class ListServiceTemplateVersionsInput < Struct.new( :major_version, :max_results, :next_token, :template_name) SENSITIVE = [] include Aws::Structure end |