Class: Aws::SSM::Types::PutParameterResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::PutParameterResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tier ⇒ String
The tier assigned to the parameter.
-
#version ⇒ Integer
The new version number of a parameter.
Instance Attribute Details
#tier ⇒ String
The tier assigned to the parameter.
15533 15534 15535 15536 15537 15538 |
# File 'lib/aws-sdk-ssm/types.rb', line 15533 class PutParameterResult < Struct.new( :version, :tier) SENSITIVE = [] include Aws::Structure end |
#version ⇒ Integer
The new version number of a parameter. If you edit a parameter value, Parameter Store automatically creates a new version and assigns this new version a unique ID. You can reference a parameter version ID in API operations or in Systems Manager documents (SSM documents). By default, if you don’t specify a specific version, the system returns the latest parameter value when a parameter is called.
15533 15534 15535 15536 15537 15538 |
# File 'lib/aws-sdk-ssm/types.rb', line 15533 class PutParameterResult < Struct.new( :version, :tier) SENSITIVE = [] include Aws::Structure end |