You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SSM::Types::LabelParameterVersionRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing LabelParameterVersionRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "PSParameterName", # required
  parameter_version: 1,
  labels: ["ParameterLabel"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#labelsArray<String>

One or more labels to attach to the specified parameter version.

Returns:

  • (Array<String>)

    One or more labels to attach to the specified parameter version.

#nameString

The parameter name on which you want to attach one or more labels.

Returns:

  • (String)

    The parameter name on which you want to attach one or more labels.

#parameter_versionInteger

The specific version of the parameter on which you want to attach one or more labels. If no version is specified, the system attaches the label to the latest version.

Returns:

  • (Integer)

    The specific version of the parameter on which you want to attach one or more labels.