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.



1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 1132

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



1132
1133
1134
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 1132

def unknown
  @unknown
end