Class: Aws::Connect::Types::CreateContactFlowRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::CreateContactFlowRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The JSON string that represents the content of the flow.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the flow.
 - 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the Amazon Connect instance.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the flow.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the flow status as either ‘SAVED` or `PUBLISHED`.
 - 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The tags used to organize, track, or control access for this resource.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the flow.
 
Instance Attribute Details
#content ⇒ String
The JSON string that represents the content of the flow. For an example, see [Example flow in Amazon Connect Flow language].
Length Constraints: Minimum length of 1. Maximum length of 256000.
[1]: docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html
      3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3608 class CreateContactFlowRequest < Struct.new( :instance_id, :name, :type, :description, :content, :status, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
The description of the flow.
      3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3608 class CreateContactFlowRequest < Struct.new( :instance_id, :name, :type, :description, :content, :status, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_id ⇒ String
The identifier of the Amazon Connect instance.
      3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3608 class CreateContactFlowRequest < Struct.new( :instance_id, :name, :type, :description, :content, :status, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the flow.
      3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3608 class CreateContactFlowRequest < Struct.new( :instance_id, :name, :type, :description, :content, :status, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
Indicates the flow status as either ‘SAVED` or `PUBLISHED`. The `PUBLISHED` status will initiate validation on the content. the `SAVED` status does not initiate validation of the content. `SAVED` | `PUBLISHED`.
      3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3608 class CreateContactFlowRequest < Struct.new( :instance_id, :name, :type, :description, :content, :status, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Hash<String,String>
The tags used to organize, track, or control access for this resource. For example, { “Tags”: “key2”:“value2” }.
      3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3608 class CreateContactFlowRequest < Struct.new( :instance_id, :name, :type, :description, :content, :status, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of the flow. For descriptions of the available types, see
- Choose a flow type][1
 - 
in the *Amazon Connect Administrator Guide*.
 
[1]: docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types
      3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3608 class CreateContactFlowRequest < Struct.new( :instance_id, :name, :type, :description, :content, :status, :tags) SENSITIVE = [] include Aws::Structure end  |