Class: Aws::MarketplaceDeployment::Types::DeploymentParameterInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-marketplacedeployment/lib/aws-sdk-marketplacedeployment/types.rb

Overview

The shape containing the requested deployment parameter name and secretString.

Constant Summary collapse

SENSITIVE =
[:secret_string]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The desired name of the deployment parameter. This is the identifier on which deployment parameters are keyed for a given buyer and product. If this name matches an existing deployment parameter, this request will update the existing resource.

Returns:

  • (String)


61
62
63
64
65
66
# File 'gems/aws-sdk-marketplacedeployment/lib/aws-sdk-marketplacedeployment/types.rb', line 61

class DeploymentParameterInput < Struct.new(
  :name,
  :secret_string)
  SENSITIVE = [:secret_string]
  include Aws::Structure
end

#secret_stringString

The text to encrypt and store in the secret.

Returns:

  • (String)


61
62
63
64
65
66
# File 'gems/aws-sdk-marketplacedeployment/lib/aws-sdk-marketplacedeployment/types.rb', line 61

class DeploymentParameterInput < Struct.new(
  :name,
  :secret_string)
  SENSITIVE = [:secret_string]
  include Aws::Structure
end