Class: Aws::BedrockAgentCore::Types::ContentDeltaEvent

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#stderrString

The standard error content from the command execution. This field contains the incremental output written to stderr by the executing command.

Returns:

  • (String)


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

#stdoutString

The standard output content from the command execution. This field contains the incremental output written to stdout by the executing command.

Returns:

  • (String)


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