Class: Aws::BedrockAgentCore::Types::ContentDeltaEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::ContentDeltaEvent
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
An event that contains incremental output from a command execution. This event streams standard output and standard error content as it becomes available during command execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stderr ⇒ String
The standard error content from the command execution.
-
#stdout ⇒ String
The standard output content from the command execution.
Instance Attribute Details
#stderr ⇒ String
The standard error content from the command execution. This field contains the incremental output written to stderr by the executing command.
1337 1338 1339 1340 1341 1342 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 1337 class ContentDeltaEvent < Struct.new( :stdout, :stderr) SENSITIVE = [] include Aws::Structure end |
#stdout ⇒ String
The standard output content from the command execution. This field contains the incremental output written to stdout by the executing command.
1337 1338 1339 1340 1341 1342 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 1337 class ContentDeltaEvent < Struct.new( :stdout, :stderr) SENSITIVE = [] include Aws::Structure end |