Class: Aws::BedrockAgent::Types::CreateFlowRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::BedrockAgent::Types::CreateFlowRequest
 
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [:definition] 
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. 
- 
  
    
      #customer_encryption_key_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) of the KMS key to encrypt the flow. 
- 
  
    
      #definition  ⇒ Types::FlowDefinition 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A definition of the nodes and connections between nodes in the flow. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A description for the flow. 
- 
  
    
      #execution_role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) of the service role with permissions to create and manage a flow. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A name for the flow. 
- 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Any tags that you want to attach to the flow. 
Instance Attribute Details
#client_token ⇒ String
A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.
A suitable default value is auto-generated. You should normally not need to pass this option.
| 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2301 class CreateFlowRequest < Struct.new( :name, :description, :execution_role_arn, :customer_encryption_key_arn, :definition, :client_token, :tags) SENSITIVE = [:definition] include Aws::Structure end | 
#customer_encryption_key_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS key to encrypt the flow.
| 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2301 class CreateFlowRequest < Struct.new( :name, :description, :execution_role_arn, :customer_encryption_key_arn, :definition, :client_token, :tags) SENSITIVE = [:definition] include Aws::Structure end | 
#definition ⇒ Types::FlowDefinition
A definition of the nodes and connections between nodes in the flow.
| 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2301 class CreateFlowRequest < Struct.new( :name, :description, :execution_role_arn, :customer_encryption_key_arn, :definition, :client_token, :tags) SENSITIVE = [:definition] include Aws::Structure end | 
#description ⇒ String
A description for the flow.
| 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2301 class CreateFlowRequest < Struct.new( :name, :description, :execution_role_arn, :customer_encryption_key_arn, :definition, :client_token, :tags) SENSITIVE = [:definition] include Aws::Structure end | 
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the service role with permissions to create and manage a flow. For more information, see Create a service role for flows in Amazon Bedrock in the Amazon Bedrock User Guide.
| 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2301 class CreateFlowRequest < Struct.new( :name, :description, :execution_role_arn, :customer_encryption_key_arn, :definition, :client_token, :tags) SENSITIVE = [:definition] include Aws::Structure end | 
#name ⇒ String
A name for the flow.
| 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2301 class CreateFlowRequest < Struct.new( :name, :description, :execution_role_arn, :customer_encryption_key_arn, :definition, :client_token, :tags) SENSITIVE = [:definition] include Aws::Structure end | 
#tags ⇒ Hash<String,String>
Any tags that you want to attach to the flow. For more information, see Tagging resources in Amazon Bedrock.
| 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2301 class CreateFlowRequest < Struct.new( :name, :description, :execution_role_arn, :customer_encryption_key_arn, :definition, :client_token, :tags) SENSITIVE = [:definition] include Aws::Structure end |