Class: Aws::SSM::Types::UnlabelParameterVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::UnlabelParameterVersionRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#labels ⇒ Array<String>
One or more labels to delete from the specified parameter version.
-
#name ⇒ String
The name of the parameter from which you want to delete one or more labels.
-
#parameter_version ⇒ Integer
The specific version of the parameter which you want to delete one or more labels from.
Instance Attribute Details
#labels ⇒ Array<String>
One or more labels to delete from the specified parameter version.
18330 18331 18332 18333 18334 18335 18336 |
# File 'lib/aws-sdk-ssm/types.rb', line 18330 class UnlabelParameterVersionRequest < Struct.new( :name, :parameter_version, :labels) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the parameter from which you want to delete one or more labels.
<note markdown=“1”> You can’t enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
</note>
18330 18331 18332 18333 18334 18335 18336 |
# File 'lib/aws-sdk-ssm/types.rb', line 18330 class UnlabelParameterVersionRequest < Struct.new( :name, :parameter_version, :labels) SENSITIVE = [] include Aws::Structure end |
#parameter_version ⇒ Integer
The specific version of the parameter which you want to delete one or more labels from. If it isn’t present, the call will fail.
18330 18331 18332 18333 18334 18335 18336 |
# File 'lib/aws-sdk-ssm/types.rb', line 18330 class UnlabelParameterVersionRequest < Struct.new( :name, :parameter_version, :labels) SENSITIVE = [] include Aws::Structure end |