Class: Aws::Mgn::Types::SsmExternalParameter

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

Overview

Note:

SsmExternalParameter is a union - when making an API calls you must set exactly one of the members.

Note:

SsmExternalParameter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SsmExternalParameter corresponding to the set member.

AWS Systems Manager Document external parameter.

Direct Known Subclasses

DynamicPath, Unknown

Defined Under Namespace

Classes: DynamicPath, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dynamic_pathString

AWS Systems Manager Document external parameters dynamic path.

Returns:

  • (String)


3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
# File 'gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb', line 3822

class SsmExternalParameter < Struct.new(
  :dynamic_path,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class DynamicPath < SsmExternalParameter; end
  class Unknown < SsmExternalParameter; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3822
3823
3824
# File 'gems/aws-sdk-mgn/lib/aws-sdk-mgn/types.rb', line 3822

def unknown
  @unknown
end