Class: Aws::Connect::Types::BatchCreateDataTableValueRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::BatchCreateDataTableValueRequest
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_table_id ⇒ String
The unique identifier for the data table.
-
#instance_id ⇒ String
The unique identifier for the Amazon Connect instance.
-
#values ⇒ Array<Types::DataTableValue>
A list of values to create.
Instance Attribute Details
#data_table_id ⇒ String
The unique identifier for the data table. Must also accept the table ARN with or without a version alias. If no alias is provided, the default behavior is identical to providing the $LATEST alias.
2157 2158 2159 2160 2161 2162 2163 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2157 class BatchCreateDataTableValueRequest < Struct.new( :instance_id, :data_table_id, :values) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The unique identifier for the Amazon Connect instance.
2157 2158 2159 2160 2161 2162 2163 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2157 class BatchCreateDataTableValueRequest < Struct.new( :instance_id, :data_table_id, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<Types::DataTableValue>
A list of values to create. Each value must specify the attribute name and optionally primary values if the table has primary attributes.
2157 2158 2159 2160 2161 2162 2163 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2157 class BatchCreateDataTableValueRequest < Struct.new( :instance_id, :data_table_id, :values) SENSITIVE = [] include Aws::Structure end |