Class: Aws::BedrockAgentCore::Types::StreamUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::StreamUpdate
- 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
Defined Under Namespace
Classes: AutomationStreamUpdate, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automation_stream_update ⇒ Types::AutomationStreamUpdate
The update to an automation stream.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#automation_stream_update ⇒ Types::AutomationStreamUpdate
The update to an automation stream.
2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2165 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2165 2166 2167 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2165 def unknown @unknown end |