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)


2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 2052

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



2052
2053
2054
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 2052

def unknown
  @unknown
end