Class: Aws::Drs::Types::EventResourceData

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

Overview

Note:

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

Properties of resource related to a job event.

Direct Known Subclasses

SourceNetworkData, Unknown

Defined Under Namespace

Classes: SourceNetworkData, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#source_network_dataTypes::SourceNetworkData

Source Network properties.



1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 1148

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

  class SourceNetworkData < EventResourceData; end
  class Unknown < EventResourceData; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1148
1149
1150
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 1148

def unknown
  @unknown
end