Class: Aws::BedrockAgentCoreControl::Types::UpdatedDescription

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

Overview

Wrapper for updating an optional Description field with PATCH semantics. When present in an update request, the description is replaced with optionalValue. When absent, the description is left unchanged. To unset the description, include the wrapper with optionalValue not specified.

Constant Summary collapse

SENSITIVE =
[:optional_value]

Instance Attribute Summary collapse

Instance Attribute Details

#optional_valueString

Represents an optional value that is used to update the human-readable description of the resource. If not specified, it will clear the current description of the resource.

Returns:

  • (String)


17883
17884
17885
17886
17887
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 17883

class UpdatedDescription < Struct.new(
  :optional_value)
  SENSITIVE = [:optional_value]
  include Aws::Structure
end