aws-sdk-connect 1.186.0 → 1.187.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +404 -35
- data/lib/aws-sdk-connect/client_api.rb +7 -1
- data/lib/aws-sdk-connect/types.rb +528 -37
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +18 -6
- data/sig/types.rbs +2 -1
- metadata +2 -2
@@ -1161,6 +1161,8 @@ module Aws::Connect
|
|
1161
1161
|
SecurityToken = Shapes::StringShape.new(name: 'SecurityToken')
|
1162
1162
|
SegmentAttributeName = Shapes::StringShape.new(name: 'SegmentAttributeName')
|
1163
1163
|
SegmentAttributeValue = Shapes::StructureShape.new(name: 'SegmentAttributeValue')
|
1164
|
+
SegmentAttributeValueInteger = Shapes::IntegerShape.new(name: 'SegmentAttributeValueInteger')
|
1165
|
+
SegmentAttributeValueMap = Shapes::MapShape.new(name: 'SegmentAttributeValueMap')
|
1164
1166
|
SegmentAttributeValueString = Shapes::StringShape.new(name: 'SegmentAttributeValueString')
|
1165
1167
|
SegmentAttributes = Shapes::MapShape.new(name: 'SegmentAttributes')
|
1166
1168
|
SendChatIntegrationEventRequest = Shapes::StructureShape.new(name: 'SendChatIntegrationEventRequest')
|
@@ -1980,7 +1982,6 @@ module Aws::Connect
|
|
1980
1982
|
ContactFlow.add_member(:description, Shapes::ShapeRef.new(shape: ContactFlowDescription, location_name: "Description"))
|
1981
1983
|
ContactFlow.add_member(:content, Shapes::ShapeRef.new(shape: ContactFlowContent, location_name: "Content"))
|
1982
1984
|
ContactFlow.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
1983
|
-
ContactFlow.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
1984
1985
|
ContactFlow.add_member(:flow_content_sha_256, Shapes::ShapeRef.new(shape: FlowContentSha256, location_name: "FlowContentSha256"))
|
1985
1986
|
ContactFlow.add_member(:version, Shapes::ShapeRef.new(shape: ResourceVersion, location_name: "Version"))
|
1986
1987
|
ContactFlow.add_member(:version_description, Shapes::ShapeRef.new(shape: ContactFlowDescription, location_name: "VersionDescription"))
|
@@ -5203,8 +5204,13 @@ module Aws::Connect
|
|
5203
5204
|
SecurityProfilesSearchSummaryList.member = Shapes::ShapeRef.new(shape: SecurityProfileSearchSummary)
|
5204
5205
|
|
5205
5206
|
SegmentAttributeValue.add_member(:value_string, Shapes::ShapeRef.new(shape: SegmentAttributeValueString, location_name: "ValueString"))
|
5207
|
+
SegmentAttributeValue.add_member(:value_map, Shapes::ShapeRef.new(shape: SegmentAttributeValueMap, location_name: "ValueMap"))
|
5208
|
+
SegmentAttributeValue.add_member(:value_integer, Shapes::ShapeRef.new(shape: SegmentAttributeValueInteger, location_name: "ValueInteger"))
|
5206
5209
|
SegmentAttributeValue.struct_class = Types::SegmentAttributeValue
|
5207
5210
|
|
5211
|
+
SegmentAttributeValueMap.key = Shapes::ShapeRef.new(shape: SegmentAttributeName)
|
5212
|
+
SegmentAttributeValueMap.value = Shapes::ShapeRef.new(shape: SegmentAttributeValue)
|
5213
|
+
|
5208
5214
|
SegmentAttributes.key = Shapes::ShapeRef.new(shape: SegmentAttributeName)
|
5209
5215
|
SegmentAttributes.value = Shapes::ShapeRef.new(shape: SegmentAttributeValue)
|
5210
5216
|
|