Class: Aws::Bedrock::Types::AutomatedReasoningPolicyWorkflowTypeContent

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

Overview

Note:

AutomatedReasoningPolicyWorkflowTypeContent is a union - when making an API calls you must set exactly one of the members.

Defines the content and configuration for different types of policy build workflows.

Direct Known Subclasses

Documents, PolicyRepairAssets, Unknown

Defined Under Namespace

Classes: Documents, PolicyRepairAssets, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#documentsArray<Types::AutomatedReasoningPolicyBuildWorkflowDocument>

The list of documents to be processed in a document ingestion workflow.



1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1984

class AutomatedReasoningPolicyWorkflowTypeContent < Struct.new(
  :documents,
  :policy_repair_assets,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Documents < AutomatedReasoningPolicyWorkflowTypeContent; end
  class PolicyRepairAssets < AutomatedReasoningPolicyWorkflowTypeContent; end
  class Unknown < AutomatedReasoningPolicyWorkflowTypeContent; end
end

#policy_repair_assetsTypes::AutomatedReasoningPolicyBuildWorkflowRepairContent

The assets and instructions needed for a policy repair workflow, including repair annotations and guidance.



1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1984

class AutomatedReasoningPolicyWorkflowTypeContent < Struct.new(
  :documents,
  :policy_repair_assets,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Documents < AutomatedReasoningPolicyWorkflowTypeContent; end
  class PolicyRepairAssets < AutomatedReasoningPolicyWorkflowTypeContent; end
  class Unknown < AutomatedReasoningPolicyWorkflowTypeContent; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1984
1985
1986
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1984

def unknown
  @unknown
end