Class: Aws::Drs::Types::ParticipatingResourceID

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

Overview

Note:

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

ID of a resource participating in an asynchronous Job.

Direct Known Subclasses

SourceNetworkId, Unknown

Defined Under Namespace

Classes: SourceNetworkId, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#source_network_idString

Source Network ID.

Returns:

  • (String)


2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 2068

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

  class SourceNetworkId < ParticipatingResourceID; end
  class Unknown < ParticipatingResourceID; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2068
2069
2070
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 2068

def unknown
  @unknown
end