aws-sdk-appintegrationsservice 1.36.0 → 1.37.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a934b5b4a9e778dbd97e500fdaad459e80e950a8d94d91d40803dd89d51e65fd
4
- data.tar.gz: 6b11bce4548499cf48ffb1f2d031e7091911f59b70cb316ca3065743a62cd66d
3
+ metadata.gz: 8438132dad35efe1af13119d8c4c23d3c0044b99285bc1f35cc0a3948af6ffb7
4
+ data.tar.gz: dbd79ca6f61485f4ed8b1ba2ab8d4b33c48f17184aab3792303e44b8675a5010
5
5
  SHA512:
6
- metadata.gz: 4c162ea0d3b2e83761c60a1cd29db4c03f77e9ee1e326fff34397b5f8b10b8d02875bd60714f5485a99438a0c09d5e45b956e0c5549ec441775a4941a9ee4aea
7
- data.tar.gz: 403633b289c106002c38218d2600d5eb6968c4b11015b5d0b0711eb663ba2ffab85b0a7cff21e4e297575231664372f9e806badded909c8c3b14911b8f562732
6
+ metadata.gz: 1212c3a62175ab7b2069d66e8c00365462c836ccf87cf5c28098c8d20d5801eb8643c61d6bf001e9b16ee79c6da052fd12e4e30fdc6c51d5a117843ad0e75072
7
+ data.tar.gz: ef3ce2efdf23cf5b41d5d448d3660e75a86228a68369232644bf4387169b40534ba0252e8e9d88c4ba324d32f954f1332b88870cfb358531eb6d657036e7f089
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2024-08-07)
5
+ ------------------
6
+
7
+ * Feature - Updated CreateDataIntegration and CreateDataIntegrationAssociation API to support bulk data export from Amazon Connect Customer Profiles to the customer S3 bucket.
8
+
4
9
  1.36.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -425,8 +425,6 @@ module Aws::AppIntegrationsService
425
425
 
426
426
  # @!group API Operations
427
427
 
428
- # This API is in preview release and subject to change.
429
- #
430
428
  # Creates and persists an Application resource.
431
429
  #
432
430
  # @option params [required, String] :name
@@ -557,9 +555,9 @@ module Aws::AppIntegrationsService
557
555
  # A description of the DataIntegration.
558
556
  #
559
557
  # @option params [required, String] :kms_key
560
- # The KMS key for the DataIntegration.
558
+ # The KMS key ARN for the DataIntegration.
561
559
  #
562
- # @option params [required, String] :source_uri
560
+ # @option params [String] :source_uri
563
561
  # The URI of the data source.
564
562
  #
565
563
  # @option params [Types::ScheduleConfiguration] :schedule_config
@@ -610,7 +608,7 @@ module Aws::AppIntegrationsService
610
608
  # name: "Name", # required
611
609
  # description: "Description",
612
610
  # kms_key: "NonBlankString", # required
613
- # source_uri: "SourceURI", # required
611
+ # source_uri: "SourceURI",
614
612
  # schedule_config: {
615
613
  # first_execution_from: "NonBlankString",
616
614
  # object: "Object",
@@ -666,6 +664,88 @@ module Aws::AppIntegrationsService
666
664
  req.send_request(options)
667
665
  end
668
666
 
667
+ # Creates and persists a DataIntegrationAssociation resource.
668
+ #
669
+ # @option params [required, String] :data_integration_identifier
670
+ # A unique identifier for the DataIntegration.
671
+ #
672
+ # @option params [String] :client_id
673
+ # The identifier for the client that is associated with the
674
+ # DataIntegration association.
675
+ #
676
+ # @option params [Hash<String,Hash>] :object_configuration
677
+ # The configuration for what data should be pulled from the source.
678
+ #
679
+ # @option params [String] :destination_uri
680
+ # The URI of the data destination.
681
+ #
682
+ # @option params [Hash<String,String>] :client_association_metadata
683
+ # The mapping of metadata to be extracted from the data.
684
+ #
685
+ # @option params [String] :client_token
686
+ # A unique, case-sensitive identifier that you provide to ensure the
687
+ # idempotency of the request. If not provided, the Amazon Web Services
688
+ # SDK populates this field. For more information about idempotency, see
689
+ # [Making retries safe with idempotent APIs][1].
690
+ #
691
+ # **A suitable default value is auto-generated.** You should normally
692
+ # not need to pass this option.**
693
+ #
694
+ #
695
+ #
696
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
697
+ #
698
+ # @option params [Types::ExecutionConfiguration] :execution_configuration
699
+ # The configuration for how the files should be pulled from the source.
700
+ #
701
+ # @return [Types::CreateDataIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
702
+ #
703
+ # * {Types::CreateDataIntegrationAssociationResponse#data_integration_association_id #data_integration_association_id} => String
704
+ # * {Types::CreateDataIntegrationAssociationResponse#data_integration_arn #data_integration_arn} => String
705
+ #
706
+ # @example Request syntax with placeholder values
707
+ #
708
+ # resp = client.create_data_integration_association({
709
+ # data_integration_identifier: "Identifier", # required
710
+ # client_id: "ClientId",
711
+ # object_configuration: {
712
+ # "NonBlankString" => {
713
+ # "NonBlankString" => ["Fields"],
714
+ # },
715
+ # },
716
+ # destination_uri: "DestinationURI",
717
+ # client_association_metadata: {
718
+ # "NonBlankString" => "NonBlankString",
719
+ # },
720
+ # client_token: "IdempotencyToken",
721
+ # execution_configuration: {
722
+ # execution_mode: "ON_DEMAND", # required, accepts ON_DEMAND, SCHEDULED
723
+ # on_demand_configuration: {
724
+ # start_time: "NonBlankString", # required
725
+ # end_time: "NonBlankString",
726
+ # },
727
+ # schedule_configuration: {
728
+ # first_execution_from: "NonBlankString",
729
+ # object: "Object",
730
+ # schedule_expression: "NonBlankString", # required
731
+ # },
732
+ # },
733
+ # })
734
+ #
735
+ # @example Response structure
736
+ #
737
+ # resp.data_integration_association_id #=> String
738
+ # resp.data_integration_arn #=> String
739
+ #
740
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationAssociation AWS API Documentation
741
+ #
742
+ # @overload create_data_integration_association(params = {})
743
+ # @param [Hash] params ({})
744
+ def create_data_integration_association(params = {}, options = {})
745
+ req = build_request(:create_data_integration_association, params)
746
+ req.send_request(options)
747
+ end
748
+
669
749
  # Creates an EventIntegration, given a specified name, description, and
670
750
  # a reference to an Amazon EventBridge bus in your account and a partner
671
751
  # event source that pushes events to that bus. No objects are created in
@@ -829,8 +909,6 @@ module Aws::AppIntegrationsService
829
909
  req.send_request(options)
830
910
  end
831
911
 
832
- # This API is in preview release and subject to change.
833
- #
834
912
  # Get an Application resource.
835
913
  #
836
914
  # @option params [required, String] :arn
@@ -1084,8 +1162,6 @@ module Aws::AppIntegrationsService
1084
1162
  req.send_request(options)
1085
1163
  end
1086
1164
 
1087
- # This API is in preview release and subject to change.
1088
- #
1089
1165
  # Lists applications in the account.
1090
1166
  #
1091
1167
  # @option params [String] :next_token
@@ -1198,6 +1274,15 @@ module Aws::AppIntegrationsService
1198
1274
  # resp.data_integration_associations[0].data_integration_association_arn #=> String
1199
1275
  # resp.data_integration_associations[0].data_integration_arn #=> String
1200
1276
  # resp.data_integration_associations[0].client_id #=> String
1277
+ # resp.data_integration_associations[0].destination_uri #=> String
1278
+ # resp.data_integration_associations[0].last_execution_status.execution_status #=> String, one of "COMPLETED", "IN_PROGRESS", "FAILED"
1279
+ # resp.data_integration_associations[0].last_execution_status.status_message #=> String
1280
+ # resp.data_integration_associations[0].execution_configuration.execution_mode #=> String, one of "ON_DEMAND", "SCHEDULED"
1281
+ # resp.data_integration_associations[0].execution_configuration.on_demand_configuration.start_time #=> String
1282
+ # resp.data_integration_associations[0].execution_configuration.on_demand_configuration.end_time #=> String
1283
+ # resp.data_integration_associations[0].execution_configuration.schedule_configuration.first_execution_from #=> String
1284
+ # resp.data_integration_associations[0].execution_configuration.schedule_configuration.object #=> String
1285
+ # resp.data_integration_associations[0].execution_configuration.schedule_configuration.schedule_expression #=> String
1201
1286
  # resp.next_token #=> String
1202
1287
  #
1203
1288
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociations AWS API Documentation
@@ -1441,8 +1526,6 @@ module Aws::AppIntegrationsService
1441
1526
  req.send_request(options)
1442
1527
  end
1443
1528
 
1444
- # This API is in preview release and subject to change.
1445
- #
1446
1529
  # Updates and persists an Application resource.
1447
1530
  #
1448
1531
  # @option params [required, String] :arn
@@ -1561,6 +1644,52 @@ module Aws::AppIntegrationsService
1561
1644
  req.send_request(options)
1562
1645
  end
1563
1646
 
1647
+ # Updates and persists a DataIntegrationAssociation resource.
1648
+ #
1649
+ # <note markdown="1"> Updating a DataIntegrationAssociation with ExecutionConfiguration will
1650
+ # rerun the on-demand job.
1651
+ #
1652
+ # </note>
1653
+ #
1654
+ # @option params [required, String] :data_integration_identifier
1655
+ # A unique identifier for the DataIntegration.
1656
+ #
1657
+ # @option params [required, String] :data_integration_association_identifier
1658
+ # A unique identifier. of the DataIntegrationAssociation resource
1659
+ #
1660
+ # @option params [required, Types::ExecutionConfiguration] :execution_configuration
1661
+ # The configuration for how the files should be pulled from the source.
1662
+ #
1663
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1664
+ #
1665
+ # @example Request syntax with placeholder values
1666
+ #
1667
+ # resp = client.update_data_integration_association({
1668
+ # data_integration_identifier: "Identifier", # required
1669
+ # data_integration_association_identifier: "Identifier", # required
1670
+ # execution_configuration: { # required
1671
+ # execution_mode: "ON_DEMAND", # required, accepts ON_DEMAND, SCHEDULED
1672
+ # on_demand_configuration: {
1673
+ # start_time: "NonBlankString", # required
1674
+ # end_time: "NonBlankString",
1675
+ # },
1676
+ # schedule_configuration: {
1677
+ # first_execution_from: "NonBlankString",
1678
+ # object: "Object",
1679
+ # schedule_expression: "NonBlankString", # required
1680
+ # },
1681
+ # },
1682
+ # })
1683
+ #
1684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationAssociation AWS API Documentation
1685
+ #
1686
+ # @overload update_data_integration_association(params = {})
1687
+ # @param [Hash] params ({})
1688
+ def update_data_integration_association(params = {}, options = {})
1689
+ req = build_request(:update_data_integration_association, params)
1690
+ req.send_request(options)
1691
+ end
1692
+
1564
1693
  # Updates the description of an event integration.
1565
1694
  #
1566
1695
  # @option params [required, String] :name
@@ -1600,7 +1729,7 @@ module Aws::AppIntegrationsService
1600
1729
  params: params,
1601
1730
  config: config)
1602
1731
  context[:gem_name] = 'aws-sdk-appintegrationsservice'
1603
- context[:gem_version] = '1.36.0'
1732
+ context[:gem_version] = '1.37.0'
1604
1733
  Seahorse::Client::Request.new(handlers, context)
1605
1734
  end
1606
1735
 
@@ -29,6 +29,8 @@ module Aws::AppIntegrationsService
29
29
  ClientId = Shapes::StringShape.new(name: 'ClientId')
30
30
  CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
31
31
  CreateApplicationResponse = Shapes::StructureShape.new(name: 'CreateApplicationResponse')
32
+ CreateDataIntegrationAssociationRequest = Shapes::StructureShape.new(name: 'CreateDataIntegrationAssociationRequest')
33
+ CreateDataIntegrationAssociationResponse = Shapes::StructureShape.new(name: 'CreateDataIntegrationAssociationResponse')
32
34
  CreateDataIntegrationRequest = Shapes::StructureShape.new(name: 'CreateDataIntegrationRequest')
33
35
  CreateDataIntegrationResponse = Shapes::StructureShape.new(name: 'CreateDataIntegrationResponse')
34
36
  CreateEventIntegrationRequest = Shapes::StructureShape.new(name: 'CreateEventIntegrationRequest')
@@ -44,6 +46,7 @@ module Aws::AppIntegrationsService
44
46
  DeleteEventIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteEventIntegrationRequest')
45
47
  DeleteEventIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteEventIntegrationResponse')
46
48
  Description = Shapes::StringShape.new(name: 'Description')
49
+ DestinationURI = Shapes::StringShape.new(name: 'DestinationURI')
47
50
  DuplicateResourceException = Shapes::StructureShape.new(name: 'DuplicateResourceException')
48
51
  EventBridgeBus = Shapes::StringShape.new(name: 'EventBridgeBus')
49
52
  EventBridgeRuleName = Shapes::StringShape.new(name: 'EventBridgeRuleName')
@@ -54,6 +57,9 @@ module Aws::AppIntegrationsService
54
57
  EventIntegrationAssociationsList = Shapes::ListShape.new(name: 'EventIntegrationAssociationsList')
55
58
  EventIntegrationsList = Shapes::ListShape.new(name: 'EventIntegrationsList')
56
59
  EventName = Shapes::StringShape.new(name: 'EventName')
60
+ ExecutionConfiguration = Shapes::StructureShape.new(name: 'ExecutionConfiguration')
61
+ ExecutionMode = Shapes::StringShape.new(name: 'ExecutionMode')
62
+ ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
57
63
  ExternalUrlConfig = Shapes::StructureShape.new(name: 'ExternalUrlConfig')
58
64
  Fields = Shapes::StringShape.new(name: 'Fields')
59
65
  FieldsList = Shapes::ListShape.new(name: 'FieldsList')
@@ -70,6 +76,7 @@ module Aws::AppIntegrationsService
70
76
  Identifier = Shapes::StringShape.new(name: 'Identifier')
71
77
  InternalServiceError = Shapes::StructureShape.new(name: 'InternalServiceError')
72
78
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
79
+ LastExecutionStatus = Shapes::StructureShape.new(name: 'LastExecutionStatus')
73
80
  ListApplicationAssociationsRequest = Shapes::StructureShape.new(name: 'ListApplicationAssociationsRequest')
74
81
  ListApplicationAssociationsResponse = Shapes::StructureShape.new(name: 'ListApplicationAssociationsResponse')
75
82
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
@@ -92,6 +99,7 @@ module Aws::AppIntegrationsService
92
99
  NonBlankString = Shapes::StringShape.new(name: 'NonBlankString')
93
100
  Object = Shapes::StringShape.new(name: 'Object')
94
101
  ObjectConfiguration = Shapes::MapShape.new(name: 'ObjectConfiguration')
102
+ OnDemandConfiguration = Shapes::StructureShape.new(name: 'OnDemandConfiguration')
95
103
  Permission = Shapes::StringShape.new(name: 'Permission')
96
104
  PermissionList = Shapes::ListShape.new(name: 'PermissionList')
97
105
  Publication = Shapes::StructureShape.new(name: 'Publication')
@@ -118,6 +126,8 @@ module Aws::AppIntegrationsService
118
126
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
119
127
  UpdateApplicationRequest = Shapes::StructureShape.new(name: 'UpdateApplicationRequest')
120
128
  UpdateApplicationResponse = Shapes::StructureShape.new(name: 'UpdateApplicationResponse')
129
+ UpdateDataIntegrationAssociationRequest = Shapes::StructureShape.new(name: 'UpdateDataIntegrationAssociationRequest')
130
+ UpdateDataIntegrationAssociationResponse = Shapes::StructureShape.new(name: 'UpdateDataIntegrationAssociationResponse')
121
131
  UpdateDataIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateDataIntegrationRequest')
122
132
  UpdateDataIntegrationResponse = Shapes::StructureShape.new(name: 'UpdateDataIntegrationResponse')
123
133
  UpdateEventIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateEventIntegrationRequest')
@@ -166,10 +176,23 @@ module Aws::AppIntegrationsService
166
176
  CreateApplicationResponse.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "Id"))
167
177
  CreateApplicationResponse.struct_class = Types::CreateApplicationResponse
168
178
 
179
+ CreateDataIntegrationAssociationRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
180
+ CreateDataIntegrationAssociationRequest.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "ClientId"))
181
+ CreateDataIntegrationAssociationRequest.add_member(:object_configuration, Shapes::ShapeRef.new(shape: ObjectConfiguration, location_name: "ObjectConfiguration"))
182
+ CreateDataIntegrationAssociationRequest.add_member(:destination_uri, Shapes::ShapeRef.new(shape: DestinationURI, location_name: "DestinationURI"))
183
+ CreateDataIntegrationAssociationRequest.add_member(:client_association_metadata, Shapes::ShapeRef.new(shape: ClientAssociationMetadata, location_name: "ClientAssociationMetadata"))
184
+ CreateDataIntegrationAssociationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
185
+ CreateDataIntegrationAssociationRequest.add_member(:execution_configuration, Shapes::ShapeRef.new(shape: ExecutionConfiguration, location_name: "ExecutionConfiguration"))
186
+ CreateDataIntegrationAssociationRequest.struct_class = Types::CreateDataIntegrationAssociationRequest
187
+
188
+ CreateDataIntegrationAssociationResponse.add_member(:data_integration_association_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DataIntegrationAssociationId"))
189
+ CreateDataIntegrationAssociationResponse.add_member(:data_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationArn"))
190
+ CreateDataIntegrationAssociationResponse.struct_class = Types::CreateDataIntegrationAssociationResponse
191
+
169
192
  CreateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
170
193
  CreateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
171
194
  CreateDataIntegrationRequest.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, required: true, location_name: "KmsKey"))
172
- CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, required: true, location_name: "SourceURI"))
195
+ CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, location_name: "SourceURI"))
173
196
  CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfig"))
174
197
  CreateDataIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
175
198
  CreateDataIntegrationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
@@ -204,6 +227,9 @@ module Aws::AppIntegrationsService
204
227
  DataIntegrationAssociationSummary.add_member(:data_integration_association_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationAssociationArn"))
205
228
  DataIntegrationAssociationSummary.add_member(:data_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationArn"))
206
229
  DataIntegrationAssociationSummary.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "ClientId"))
230
+ DataIntegrationAssociationSummary.add_member(:destination_uri, Shapes::ShapeRef.new(shape: DestinationURI, location_name: "DestinationURI"))
231
+ DataIntegrationAssociationSummary.add_member(:last_execution_status, Shapes::ShapeRef.new(shape: LastExecutionStatus, location_name: "LastExecutionStatus"))
232
+ DataIntegrationAssociationSummary.add_member(:execution_configuration, Shapes::ShapeRef.new(shape: ExecutionConfiguration, location_name: "ExecutionConfiguration"))
207
233
  DataIntegrationAssociationSummary.struct_class = Types::DataIntegrationAssociationSummary
208
234
 
209
235
  DataIntegrationAssociationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationAssociationSummary)
@@ -256,6 +282,11 @@ module Aws::AppIntegrationsService
256
282
 
257
283
  EventIntegrationsList.member = Shapes::ShapeRef.new(shape: EventIntegration)
258
284
 
285
+ ExecutionConfiguration.add_member(:execution_mode, Shapes::ShapeRef.new(shape: ExecutionMode, required: true, location_name: "ExecutionMode"))
286
+ ExecutionConfiguration.add_member(:on_demand_configuration, Shapes::ShapeRef.new(shape: OnDemandConfiguration, location_name: "OnDemandConfiguration"))
287
+ ExecutionConfiguration.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
288
+ ExecutionConfiguration.struct_class = Types::ExecutionConfiguration
289
+
259
290
  ExternalUrlConfig.add_member(:access_url, Shapes::ShapeRef.new(shape: URL, required: true, location_name: "AccessUrl"))
260
291
  ExternalUrlConfig.add_member(:approved_origins, Shapes::ShapeRef.new(shape: ApplicationApprovedOrigins, location_name: "ApprovedOrigins"))
261
292
  ExternalUrlConfig.struct_class = Types::ExternalUrlConfig
@@ -320,6 +351,10 @@ module Aws::AppIntegrationsService
320
351
  InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
321
352
  InvalidRequestException.struct_class = Types::InvalidRequestException
322
353
 
354
+ LastExecutionStatus.add_member(:execution_status, Shapes::ShapeRef.new(shape: ExecutionStatus, location_name: "ExecutionStatus"))
355
+ LastExecutionStatus.add_member(:status_message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "StatusMessage"))
356
+ LastExecutionStatus.struct_class = Types::LastExecutionStatus
357
+
323
358
  ListApplicationAssociationsRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ArnOrUUID, required: true, location: "uri", location_name: "ApplicationIdentifier"))
324
359
  ListApplicationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
325
360
  ListApplicationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
@@ -380,6 +415,10 @@ module Aws::AppIntegrationsService
380
415
  ObjectConfiguration.key = Shapes::ShapeRef.new(shape: NonBlankString)
381
416
  ObjectConfiguration.value = Shapes::ShapeRef.new(shape: FieldsMap)
382
417
 
418
+ OnDemandConfiguration.add_member(:start_time, Shapes::ShapeRef.new(shape: NonBlankString, required: true, location_name: "StartTime"))
419
+ OnDemandConfiguration.add_member(:end_time, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "EndTime"))
420
+ OnDemandConfiguration.struct_class = Types::OnDemandConfiguration
421
+
383
422
  PermissionList.member = Shapes::ShapeRef.new(shape: Permission)
384
423
 
385
424
  Publication.add_member(:event, Shapes::ShapeRef.new(shape: EventName, required: true, location_name: "Event"))
@@ -440,6 +479,13 @@ module Aws::AppIntegrationsService
440
479
 
441
480
  UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
442
481
 
482
+ UpdateDataIntegrationAssociationRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
483
+ UpdateDataIntegrationAssociationRequest.add_member(:data_integration_association_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "DataIntegrationAssociationIdentifier"))
484
+ UpdateDataIntegrationAssociationRequest.add_member(:execution_configuration, Shapes::ShapeRef.new(shape: ExecutionConfiguration, required: true, location_name: "ExecutionConfiguration"))
485
+ UpdateDataIntegrationAssociationRequest.struct_class = Types::UpdateDataIntegrationAssociationRequest
486
+
487
+ UpdateDataIntegrationAssociationResponse.struct_class = Types::UpdateDataIntegrationAssociationResponse
488
+
443
489
  UpdateDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
444
490
  UpdateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
445
491
  UpdateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
@@ -502,6 +548,20 @@ module Aws::AppIntegrationsService
502
548
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
503
549
  end)
504
550
 
551
+ api.add_operation(:create_data_integration_association, Seahorse::Model::Operation.new.tap do |o|
552
+ o.name = "CreateDataIntegrationAssociation"
553
+ o.http_method = "POST"
554
+ o.http_request_uri = "/dataIntegrations/{Identifier}/associations"
555
+ o.input = Shapes::ShapeRef.new(shape: CreateDataIntegrationAssociationRequest)
556
+ o.output = Shapes::ShapeRef.new(shape: CreateDataIntegrationAssociationResponse)
557
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
558
+ o.errors << Shapes::ShapeRef.new(shape: ResourceQuotaExceededException)
559
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
560
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
561
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
562
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
563
+ end)
564
+
505
565
  api.add_operation(:create_event_integration, Seahorse::Model::Operation.new.tap do |o|
506
566
  o.name = "CreateEventIntegration"
507
567
  o.http_method = "POST"
@@ -768,6 +828,19 @@ module Aws::AppIntegrationsService
768
828
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
769
829
  end)
770
830
 
831
+ api.add_operation(:update_data_integration_association, Seahorse::Model::Operation.new.tap do |o|
832
+ o.name = "UpdateDataIntegrationAssociation"
833
+ o.http_method = "PATCH"
834
+ o.http_request_uri = "/dataIntegrations/{Identifier}/associations/{DataIntegrationAssociationIdentifier}"
835
+ o.input = Shapes::ShapeRef.new(shape: UpdateDataIntegrationAssociationRequest)
836
+ o.output = Shapes::ShapeRef.new(shape: UpdateDataIntegrationAssociationResponse)
837
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
838
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
839
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
840
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
841
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
842
+ end)
843
+
771
844
  api.add_operation(:update_event_integration, Seahorse::Model::Operation.new.tap do |o|
772
845
  o.name = "UpdateEventIntegration"
773
846
  o.http_method = "PATCH"
@@ -40,6 +40,20 @@ module Aws::AppIntegrationsService
40
40
  end
41
41
  end
42
42
 
43
+ class CreateDataIntegrationAssociation
44
+ def self.build(context)
45
+ unless context.config.regional_endpoint
46
+ endpoint = context.config.endpoint.to_s
47
+ end
48
+ Aws::AppIntegrationsService::EndpointParameters.new(
49
+ region: context.config.region,
50
+ use_dual_stack: context.config.use_dualstack_endpoint,
51
+ use_fips: context.config.use_fips_endpoint,
52
+ endpoint: endpoint,
53
+ )
54
+ end
55
+ end
56
+
43
57
  class CreateEventIntegration
44
58
  def self.build(context)
45
59
  unless context.config.regional_endpoint
@@ -292,6 +306,20 @@ module Aws::AppIntegrationsService
292
306
  end
293
307
  end
294
308
 
309
+ class UpdateDataIntegrationAssociation
310
+ def self.build(context)
311
+ unless context.config.regional_endpoint
312
+ endpoint = context.config.endpoint.to_s
313
+ end
314
+ Aws::AppIntegrationsService::EndpointParameters.new(
315
+ region: context.config.region,
316
+ use_dual_stack: context.config.use_dualstack_endpoint,
317
+ use_fips: context.config.use_fips_endpoint,
318
+ endpoint: endpoint,
319
+ )
320
+ end
321
+ end
322
+
295
323
  class UpdateEventIntegration
296
324
  def self.build(context)
297
325
  unless context.config.regional_endpoint
@@ -62,6 +62,8 @@ module Aws::AppIntegrationsService
62
62
  Aws::AppIntegrationsService::Endpoints::CreateApplication.build(context)
63
63
  when :create_data_integration
64
64
  Aws::AppIntegrationsService::Endpoints::CreateDataIntegration.build(context)
65
+ when :create_data_integration_association
66
+ Aws::AppIntegrationsService::Endpoints::CreateDataIntegrationAssociation.build(context)
65
67
  when :create_event_integration
66
68
  Aws::AppIntegrationsService::Endpoints::CreateEventIntegration.build(context)
67
69
  when :delete_application
@@ -98,6 +100,8 @@ module Aws::AppIntegrationsService
98
100
  Aws::AppIntegrationsService::Endpoints::UpdateApplication.build(context)
99
101
  when :update_data_integration
100
102
  Aws::AppIntegrationsService::Endpoints::UpdateDataIntegration.build(context)
103
+ when :update_data_integration_association
104
+ Aws::AppIntegrationsService::Endpoints::UpdateDataIntegrationAssociation.build(context)
101
105
  when :update_event_integration
102
106
  Aws::AppIntegrationsService::Endpoints::UpdateEventIntegration.build(context)
103
107
  end
@@ -183,6 +183,77 @@ module Aws::AppIntegrationsService
183
183
  include Aws::Structure
184
184
  end
185
185
 
186
+ # @!attribute [rw] data_integration_identifier
187
+ # A unique identifier for the DataIntegration.
188
+ # @return [String]
189
+ #
190
+ # @!attribute [rw] client_id
191
+ # The identifier for the client that is associated with the
192
+ # DataIntegration association.
193
+ # @return [String]
194
+ #
195
+ # @!attribute [rw] object_configuration
196
+ # The configuration for what data should be pulled from the source.
197
+ # @return [Hash<String,Hash<String,Array<String>>>]
198
+ #
199
+ # @!attribute [rw] destination_uri
200
+ # The URI of the data destination.
201
+ # @return [String]
202
+ #
203
+ # @!attribute [rw] client_association_metadata
204
+ # The mapping of metadata to be extracted from the data.
205
+ # @return [Hash<String,String>]
206
+ #
207
+ # @!attribute [rw] client_token
208
+ # A unique, case-sensitive identifier that you provide to ensure the
209
+ # idempotency of the request. If not provided, the Amazon Web Services
210
+ # SDK populates this field. For more information about idempotency,
211
+ # see [Making retries safe with idempotent APIs][1].
212
+ #
213
+ # **A suitable default value is auto-generated.** You should normally
214
+ # not need to pass this option.
215
+ #
216
+ #
217
+ #
218
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
219
+ # @return [String]
220
+ #
221
+ # @!attribute [rw] execution_configuration
222
+ # The configuration for how the files should be pulled from the
223
+ # source.
224
+ # @return [Types::ExecutionConfiguration]
225
+ #
226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationAssociationRequest AWS API Documentation
227
+ #
228
+ class CreateDataIntegrationAssociationRequest < Struct.new(
229
+ :data_integration_identifier,
230
+ :client_id,
231
+ :object_configuration,
232
+ :destination_uri,
233
+ :client_association_metadata,
234
+ :client_token,
235
+ :execution_configuration)
236
+ SENSITIVE = []
237
+ include Aws::Structure
238
+ end
239
+
240
+ # @!attribute [rw] data_integration_association_id
241
+ # A unique identifier. for the DataIntegrationAssociation.
242
+ # @return [String]
243
+ #
244
+ # @!attribute [rw] data_integration_arn
245
+ # The Amazon Resource Name (ARN) for the DataIntegration.
246
+ # @return [String]
247
+ #
248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationAssociationResponse AWS API Documentation
249
+ #
250
+ class CreateDataIntegrationAssociationResponse < Struct.new(
251
+ :data_integration_association_id,
252
+ :data_integration_arn)
253
+ SENSITIVE = []
254
+ include Aws::Structure
255
+ end
256
+
186
257
  # @!attribute [rw] name
187
258
  # The name of the DataIntegration.
188
259
  # @return [String]
@@ -192,7 +263,7 @@ module Aws::AppIntegrationsService
192
263
  # @return [String]
193
264
  #
194
265
  # @!attribute [rw] kms_key
195
- # The KMS key for the DataIntegration.
266
+ # The KMS key ARN for the DataIntegration.
196
267
  # @return [String]
197
268
  #
198
269
  # @!attribute [rw] source_uri
@@ -265,7 +336,7 @@ module Aws::AppIntegrationsService
265
336
  # @return [String]
266
337
  #
267
338
  # @!attribute [rw] kms_key
268
- # The KMS key for the DataIntegration.
339
+ # The KMS key ARN for the DataIntegration.
269
340
  # @return [String]
270
341
  #
271
342
  # @!attribute [rw] source_uri
@@ -396,12 +467,28 @@ module Aws::AppIntegrationsService
396
467
  # DataIntegration association.
397
468
  # @return [String]
398
469
  #
470
+ # @!attribute [rw] destination_uri
471
+ # The URI of the data destination.
472
+ # @return [String]
473
+ #
474
+ # @!attribute [rw] last_execution_status
475
+ # The execution status of the last job.
476
+ # @return [Types::LastExecutionStatus]
477
+ #
478
+ # @!attribute [rw] execution_configuration
479
+ # The configuration for how the files should be pulled from the
480
+ # source.
481
+ # @return [Types::ExecutionConfiguration]
482
+ #
399
483
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DataIntegrationAssociationSummary AWS API Documentation
400
484
  #
401
485
  class DataIntegrationAssociationSummary < Struct.new(
402
486
  :data_integration_association_arn,
403
487
  :data_integration_arn,
404
- :client_id)
488
+ :client_id,
489
+ :destination_uri,
490
+ :last_execution_status,
491
+ :execution_configuration)
405
492
  SENSITIVE = []
406
493
  include Aws::Structure
407
494
  end
@@ -587,6 +674,31 @@ module Aws::AppIntegrationsService
587
674
  include Aws::Structure
588
675
  end
589
676
 
677
+ # The configuration for how the files should be pulled from the source.
678
+ #
679
+ # @!attribute [rw] execution_mode
680
+ # The mode for data import/export execution.
681
+ # @return [String]
682
+ #
683
+ # @!attribute [rw] on_demand_configuration
684
+ # The start and end time for data pull from the source.
685
+ # @return [Types::OnDemandConfiguration]
686
+ #
687
+ # @!attribute [rw] schedule_configuration
688
+ # The name of the data and how often it should be pulled from the
689
+ # source.
690
+ # @return [Types::ScheduleConfiguration]
691
+ #
692
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ExecutionConfiguration AWS API Documentation
693
+ #
694
+ class ExecutionConfiguration < Struct.new(
695
+ :execution_mode,
696
+ :on_demand_configuration,
697
+ :schedule_configuration)
698
+ SENSITIVE = []
699
+ include Aws::Structure
700
+ end
701
+
590
702
  # The external URL source for the application.
591
703
  #
592
704
  # @!attribute [rw] access_url
@@ -733,11 +845,11 @@ module Aws::AppIntegrationsService
733
845
  # @return [String]
734
846
  #
735
847
  # @!attribute [rw] description
736
- # The KMS key for the DataIntegration.
848
+ # The KMS key ARN for the DataIntegration.
737
849
  # @return [String]
738
850
  #
739
851
  # @!attribute [rw] kms_key
740
- # The KMS key for the DataIntegration.
852
+ # The KMS key ARN for the DataIntegration.
741
853
  # @return [String]
742
854
  #
743
855
  # @!attribute [rw] source_uri
@@ -857,6 +969,25 @@ module Aws::AppIntegrationsService
857
969
  include Aws::Structure
858
970
  end
859
971
 
972
+ # The execution status of the last job.
973
+ #
974
+ # @!attribute [rw] execution_status
975
+ # The job status enum string.
976
+ # @return [String]
977
+ #
978
+ # @!attribute [rw] status_message
979
+ # The status message of a job.
980
+ # @return [String]
981
+ #
982
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/LastExecutionStatus AWS API Documentation
983
+ #
984
+ class LastExecutionStatus < Struct.new(
985
+ :execution_status,
986
+ :status_message)
987
+ SENSITIVE = []
988
+ include Aws::Structure
989
+ end
990
+
860
991
  # @!attribute [rw] application_id
861
992
  # A unique identifier for the Application.
862
993
  # @return [String]
@@ -1119,6 +1250,27 @@ module Aws::AppIntegrationsService
1119
1250
  include Aws::Structure
1120
1251
  end
1121
1252
 
1253
+ # The start and end time for data pull from the source.
1254
+ #
1255
+ # @!attribute [rw] start_time
1256
+ # The start time for data pull from the source as an Unix/epoch string
1257
+ # in milliseconds
1258
+ # @return [String]
1259
+ #
1260
+ # @!attribute [rw] end_time
1261
+ # The end time for data pull from the source as an Unix/epoch string
1262
+ # in milliseconds
1263
+ # @return [String]
1264
+ #
1265
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/OnDemandConfiguration AWS API Documentation
1266
+ #
1267
+ class OnDemandConfiguration < Struct.new(
1268
+ :start_time,
1269
+ :end_time)
1270
+ SENSITIVE = []
1271
+ include Aws::Structure
1272
+ end
1273
+
1122
1274
  # The configuration of an event that the application publishes.
1123
1275
  #
1124
1276
  # @!attribute [rw] event
@@ -1331,6 +1483,33 @@ module Aws::AppIntegrationsService
1331
1483
  #
1332
1484
  class UpdateApplicationResponse < Aws::EmptyStructure; end
1333
1485
 
1486
+ # @!attribute [rw] data_integration_identifier
1487
+ # A unique identifier for the DataIntegration.
1488
+ # @return [String]
1489
+ #
1490
+ # @!attribute [rw] data_integration_association_identifier
1491
+ # A unique identifier. of the DataIntegrationAssociation resource
1492
+ # @return [String]
1493
+ #
1494
+ # @!attribute [rw] execution_configuration
1495
+ # The configuration for how the files should be pulled from the
1496
+ # source.
1497
+ # @return [Types::ExecutionConfiguration]
1498
+ #
1499
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationAssociationRequest AWS API Documentation
1500
+ #
1501
+ class UpdateDataIntegrationAssociationRequest < Struct.new(
1502
+ :data_integration_identifier,
1503
+ :data_integration_association_identifier,
1504
+ :execution_configuration)
1505
+ SENSITIVE = []
1506
+ include Aws::Structure
1507
+ end
1508
+
1509
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationAssociationResponse AWS API Documentation
1510
+ #
1511
+ class UpdateDataIntegrationAssociationResponse < Aws::EmptyStructure; end
1512
+
1334
1513
  # @!attribute [rw] identifier
1335
1514
  # A unique identifier for the DataIntegration.
1336
1515
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appintegrationsservice/customizations'
52
52
  # @!group service
53
53
  module Aws::AppIntegrationsService
54
54
 
55
- GEM_VERSION = '1.36.0'
55
+ GEM_VERSION = '1.37.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -127,7 +127,7 @@ module Aws
127
127
  name: ::String,
128
128
  ?description: ::String,
129
129
  kms_key: ::String,
130
- source_uri: ::String,
130
+ ?source_uri: ::String,
131
131
  ?schedule_config: {
132
132
  first_execution_from: ::String?,
133
133
  object: ::String?,
@@ -143,6 +143,34 @@ module Aws
143
143
  ) -> _CreateDataIntegrationResponseSuccess
144
144
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataIntegrationResponseSuccess
145
145
 
146
+ interface _CreateDataIntegrationAssociationResponseSuccess
147
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataIntegrationAssociationResponse]
148
+ def data_integration_association_id: () -> ::String
149
+ def data_integration_arn: () -> ::String
150
+ end
151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#create_data_integration_association-instance_method
152
+ def create_data_integration_association: (
153
+ data_integration_identifier: ::String,
154
+ ?client_id: ::String,
155
+ ?object_configuration: Hash[::String, Hash[::String, Array[::String]]],
156
+ ?destination_uri: ::String,
157
+ ?client_association_metadata: Hash[::String, ::String],
158
+ ?client_token: ::String,
159
+ ?execution_configuration: {
160
+ execution_mode: ("ON_DEMAND" | "SCHEDULED"),
161
+ on_demand_configuration: {
162
+ start_time: ::String,
163
+ end_time: ::String?
164
+ }?,
165
+ schedule_configuration: {
166
+ first_execution_from: ::String?,
167
+ object: ::String?,
168
+ schedule_expression: ::String
169
+ }?
170
+ }
171
+ ) -> _CreateDataIntegrationAssociationResponseSuccess
172
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataIntegrationAssociationResponseSuccess
173
+
146
174
  interface _CreateEventIntegrationResponseSuccess
147
175
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventIntegrationResponse]
148
176
  def event_integration_arn: () -> ::String
@@ -389,6 +417,28 @@ module Aws
389
417
  ) -> _UpdateDataIntegrationResponseSuccess
390
418
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataIntegrationResponseSuccess
391
419
 
420
+ interface _UpdateDataIntegrationAssociationResponseSuccess
421
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataIntegrationAssociationResponse]
422
+ end
423
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#update_data_integration_association-instance_method
424
+ def update_data_integration_association: (
425
+ data_integration_identifier: ::String,
426
+ data_integration_association_identifier: ::String,
427
+ execution_configuration: {
428
+ execution_mode: ("ON_DEMAND" | "SCHEDULED"),
429
+ on_demand_configuration: {
430
+ start_time: ::String,
431
+ end_time: ::String?
432
+ }?,
433
+ schedule_configuration: {
434
+ first_execution_from: ::String?,
435
+ object: ::String?,
436
+ schedule_expression: ::String
437
+ }?
438
+ }
439
+ ) -> _UpdateDataIntegrationAssociationResponseSuccess
440
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataIntegrationAssociationResponseSuccess
441
+
392
442
  interface _UpdateEventIntegrationResponseSuccess
393
443
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEventIntegrationResponse]
394
444
  end
data/sig/types.rbs CHANGED
@@ -54,6 +54,23 @@ module Aws::AppIntegrationsService
54
54
  SENSITIVE: []
55
55
  end
56
56
 
57
+ class CreateDataIntegrationAssociationRequest
58
+ attr_accessor data_integration_identifier: ::String
59
+ attr_accessor client_id: ::String
60
+ attr_accessor object_configuration: ::Hash[::String, ::Hash[::String, ::Array[::String]]]
61
+ attr_accessor destination_uri: ::String
62
+ attr_accessor client_association_metadata: ::Hash[::String, ::String]
63
+ attr_accessor client_token: ::String
64
+ attr_accessor execution_configuration: Types::ExecutionConfiguration
65
+ SENSITIVE: []
66
+ end
67
+
68
+ class CreateDataIntegrationAssociationResponse
69
+ attr_accessor data_integration_association_id: ::String
70
+ attr_accessor data_integration_arn: ::String
71
+ SENSITIVE: []
72
+ end
73
+
57
74
  class CreateDataIntegrationRequest
58
75
  attr_accessor name: ::String
59
76
  attr_accessor description: ::String
@@ -101,6 +118,9 @@ module Aws::AppIntegrationsService
101
118
  attr_accessor data_integration_association_arn: ::String
102
119
  attr_accessor data_integration_arn: ::String
103
120
  attr_accessor client_id: ::String
121
+ attr_accessor destination_uri: ::String
122
+ attr_accessor last_execution_status: Types::LastExecutionStatus
123
+ attr_accessor execution_configuration: Types::ExecutionConfiguration
104
124
  SENSITIVE: []
105
125
  end
106
126
 
@@ -165,6 +185,13 @@ module Aws::AppIntegrationsService
165
185
  SENSITIVE: []
166
186
  end
167
187
 
188
+ class ExecutionConfiguration
189
+ attr_accessor execution_mode: ("ON_DEMAND" | "SCHEDULED")
190
+ attr_accessor on_demand_configuration: Types::OnDemandConfiguration
191
+ attr_accessor schedule_configuration: Types::ScheduleConfiguration
192
+ SENSITIVE: []
193
+ end
194
+
168
195
  class ExternalUrlConfig
169
196
  attr_accessor access_url: ::String
170
197
  attr_accessor approved_origins: ::Array[::String]
@@ -242,6 +269,12 @@ module Aws::AppIntegrationsService
242
269
  SENSITIVE: []
243
270
  end
244
271
 
272
+ class LastExecutionStatus
273
+ attr_accessor execution_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED")
274
+ attr_accessor status_message: ::String
275
+ SENSITIVE: []
276
+ end
277
+
245
278
  class ListApplicationAssociationsRequest
246
279
  attr_accessor application_id: ::String
247
280
  attr_accessor next_token: ::String
@@ -327,6 +360,12 @@ module Aws::AppIntegrationsService
327
360
  SENSITIVE: []
328
361
  end
329
362
 
363
+ class OnDemandConfiguration
364
+ attr_accessor start_time: ::String
365
+ attr_accessor end_time: ::String
366
+ SENSITIVE: []
367
+ end
368
+
330
369
  class Publication
331
370
  attr_accessor event: ::String
332
371
  attr_accessor schema: ::String
@@ -399,6 +438,16 @@ module Aws::AppIntegrationsService
399
438
  class UpdateApplicationResponse < Aws::EmptyStructure
400
439
  end
401
440
 
441
+ class UpdateDataIntegrationAssociationRequest
442
+ attr_accessor data_integration_identifier: ::String
443
+ attr_accessor data_integration_association_identifier: ::String
444
+ attr_accessor execution_configuration: Types::ExecutionConfiguration
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class UpdateDataIntegrationAssociationResponse < Aws::EmptyStructure
449
+ end
450
+
402
451
  class UpdateDataIntegrationRequest
403
452
  attr_accessor identifier: ::String
404
453
  attr_accessor name: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appintegrationsservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.0
4
+ version: 1.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core