Class: Aws::BedrockAgentCoreControl::Types::Content
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::Content
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
Content is a union - when making an API calls you must set exactly one of the members.
Represents content input for policy generation operations. This structure encapsulates the natural language descriptions or other content formats that are used as input for AI-powered policy generation.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#raw_text ⇒ String
The raw text content containing natural language descriptions of desired policy behavior.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#raw_text ⇒ String
The raw text content containing natural language descriptions of desired policy behavior. This text is processed by AI to generate corresponding Dogwood policy statements that match the described intent.
2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 2109 class Content < Struct.new( :raw_text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RawText < Content; end class Unknown < Content; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2109 2110 2111 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 2109 def unknown @unknown end |