Class: Aws::BedrockAgentCore::Types::StreamUpdate

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

Overview

Note:

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

Contains information about an update to a stream.

Direct Known Subclasses

AutomationStreamUpdate, Unknown

Defined Under Namespace

Classes: AutomationStreamUpdate, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#automation_stream_updateTypes::AutomationStreamUpdate

The update to an automation stream.



2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2173

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

  class AutomationStreamUpdate < StreamUpdate; end
  class Unknown < StreamUpdate; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2173
2174
2175
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2173

def unknown
  @unknown
end