Class: Aws::SecurityAgent::Types::VerificationScriptEnvVar

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

Overview

Represents an environment variable required to run a verification script.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the environment variable.

Returns:

  • (String)


5403
5404
5405
5406
5407
5408
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 5403

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

#valueString

The value of the environment variable.

Returns:

  • (String)


5403
5404
5405
5406
5407
5408
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 5403

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