aws-sdk-appintegrationsservice 1.6.0 → 1.7.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: b10ebf717f529e5cd6071b7f23b2e3950a18dff3acd4eef3886b48d8647c2942
4
- data.tar.gz: a4c553f545d8a822268ba8092055a16b1aa13882fd4b9a8750c8bc51470b3223
3
+ metadata.gz: ce6d877a54bb8d0bb8ec62b374a33d4cc0d6756d88030828b41aeb170b405ee2
4
+ data.tar.gz: 53eed3a506f9a470a9636971eed73c3e3563bed360038223886a751eecbb576e
5
5
  SHA512:
6
- metadata.gz: d3e4ba852994930549d92c7d6bd0af85f77bd77712cc2b94a31dabcf81b76775d8e3e4d3fc9888c5675b890ef940be331cf51812f2cd3fc558cc4ff3212356a7
7
- data.tar.gz: a8cad13009b4934db8d8eed4d4cd6e6d56611e4af5c6119fe01c6ac60c699073dc5633fccf36aa598f2673d85af96cec08dd5c24f175bb68dccbc2fe48c4ab27
6
+ metadata.gz: def926cacd35a01682fa1b51a5d621abf9de3c56b2b5006168a6142a5c8f26021f40d37acab692f1675a28487c696bc162734bbfc1d5ee19bdf56d2df95979f0
7
+ data.tar.gz: 0b3a134da462f643cf94c06b700e6953a0b5da2d045714d5b3bbe3d415b5f38568f2ce2fccb0586f01bab6226e81c39902a0526e77a4b58f33a128a9fea3bf9d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2021-09-27)
5
+ ------------------
6
+
7
+ * Feature - The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.
8
+
4
9
  1.6.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -327,6 +327,94 @@ module Aws::AppIntegrationsService
327
327
 
328
328
  # @!group API Operations
329
329
 
330
+ # Creates and persists a DataIntegration resource.
331
+ #
332
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
333
+ # that has been previously associated. Use a different DataIntegration,
334
+ # or recreate the DataIntegration using the `CreateDataIntegration` API.
335
+ #
336
+ # </note>
337
+ #
338
+ # @option params [required, String] :name
339
+ # The name of the DataIntegration.
340
+ #
341
+ # @option params [String] :description
342
+ # A description of the DataIntegration.
343
+ #
344
+ # @option params [String] :kms_key
345
+ # The KMS key for the DataIntegration.
346
+ #
347
+ # @option params [String] :source_uri
348
+ # The URI of the data source.
349
+ #
350
+ # @option params [Types::ScheduleConfiguration] :schedule_config
351
+ # The name of the data and how often it should be pulled from the
352
+ # source.
353
+ #
354
+ # @option params [Hash<String,String>] :tags
355
+ # One or more tags.
356
+ #
357
+ # @option params [String] :client_token
358
+ # A unique, case-sensitive identifier that you provide to ensure the
359
+ # idempotency of the request.
360
+ #
361
+ # **A suitable default value is auto-generated.** You should normally
362
+ # not need to pass this option.**
363
+ #
364
+ # @return [Types::CreateDataIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
365
+ #
366
+ # * {Types::CreateDataIntegrationResponse#arn #arn} => String
367
+ # * {Types::CreateDataIntegrationResponse#id #id} => String
368
+ # * {Types::CreateDataIntegrationResponse#name #name} => String
369
+ # * {Types::CreateDataIntegrationResponse#description #description} => String
370
+ # * {Types::CreateDataIntegrationResponse#kms_key #kms_key} => String
371
+ # * {Types::CreateDataIntegrationResponse#source_uri #source_uri} => String
372
+ # * {Types::CreateDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
373
+ # * {Types::CreateDataIntegrationResponse#tags #tags} => Hash&lt;String,String&gt;
374
+ # * {Types::CreateDataIntegrationResponse#client_token #client_token} => String
375
+ #
376
+ # @example Request syntax with placeholder values
377
+ #
378
+ # resp = client.create_data_integration({
379
+ # name: "Name", # required
380
+ # description: "Description",
381
+ # kms_key: "NonBlankString",
382
+ # source_uri: "NonBlankString",
383
+ # schedule_config: {
384
+ # first_execution_from: "NonBlankString",
385
+ # object: "Object",
386
+ # schedule_expression: "Schedule",
387
+ # },
388
+ # tags: {
389
+ # "TagKey" => "TagValue",
390
+ # },
391
+ # client_token: "IdempotencyToken",
392
+ # })
393
+ #
394
+ # @example Response structure
395
+ #
396
+ # resp.arn #=> String
397
+ # resp.id #=> String
398
+ # resp.name #=> String
399
+ # resp.description #=> String
400
+ # resp.kms_key #=> String
401
+ # resp.source_uri #=> String
402
+ # resp.schedule_configuration.first_execution_from #=> String
403
+ # resp.schedule_configuration.object #=> String
404
+ # resp.schedule_configuration.schedule_expression #=> String
405
+ # resp.tags #=> Hash
406
+ # resp.tags["TagKey"] #=> String
407
+ # resp.client_token #=> String
408
+ #
409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegration AWS API Documentation
410
+ #
411
+ # @overload create_data_integration(params = {})
412
+ # @param [Hash] params ({})
413
+ def create_data_integration(params = {}, options = {})
414
+ req = build_request(:create_data_integration, params)
415
+ req.send_request(options)
416
+ end
417
+
330
418
  # Creates an EventIntegration, given a specified name, description, and
331
419
  # a reference to an Amazon EventBridge bus in your account and a partner
332
420
  # event source that pushes events to that bus. No objects are created in
@@ -387,6 +475,42 @@ module Aws::AppIntegrationsService
387
475
  req.send_request(options)
388
476
  end
389
477
 
478
+ # Deletes the DataIntegration. Only DataIntegrations that don't have
479
+ # any DataIntegrationAssociations can be deleted. Deleting a
480
+ # DataIntegration also deletes the underlying Amazon AppFlow flow and
481
+ # service linked role.
482
+ #
483
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
484
+ # that has been previously associated. Use a different DataIntegration,
485
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
486
+ # API.
487
+ #
488
+ # </note>
489
+ #
490
+ #
491
+ #
492
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
493
+ #
494
+ # @option params [required, String] :data_integration_identifier
495
+ # A unique identifier for the DataIntegration.
496
+ #
497
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
498
+ #
499
+ # @example Request syntax with placeholder values
500
+ #
501
+ # resp = client.delete_data_integration({
502
+ # data_integration_identifier: "Identifier", # required
503
+ # })
504
+ #
505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteDataIntegration AWS API Documentation
506
+ #
507
+ # @overload delete_data_integration(params = {})
508
+ # @param [Hash] params ({})
509
+ def delete_data_integration(params = {}, options = {})
510
+ req = build_request(:delete_data_integration, params)
511
+ req.send_request(options)
512
+ end
513
+
390
514
  # Deletes the specified existing event integration. If the event
391
515
  # integration is associated with clients, the request is rejected.
392
516
  #
@@ -410,7 +534,63 @@ module Aws::AppIntegrationsService
410
534
  req.send_request(options)
411
535
  end
412
536
 
413
- # Return information about the event integration.
537
+ # Returns information about the DataIntegration.
538
+ #
539
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
540
+ # that has been previously associated. Use a different DataIntegration,
541
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
542
+ # API.
543
+ #
544
+ # </note>
545
+ #
546
+ #
547
+ #
548
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
549
+ #
550
+ # @option params [required, String] :identifier
551
+ # A unique identifier.
552
+ #
553
+ # @return [Types::GetDataIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
554
+ #
555
+ # * {Types::GetDataIntegrationResponse#arn #arn} => String
556
+ # * {Types::GetDataIntegrationResponse#id #id} => String
557
+ # * {Types::GetDataIntegrationResponse#name #name} => String
558
+ # * {Types::GetDataIntegrationResponse#description #description} => String
559
+ # * {Types::GetDataIntegrationResponse#kms_key #kms_key} => String
560
+ # * {Types::GetDataIntegrationResponse#source_uri #source_uri} => String
561
+ # * {Types::GetDataIntegrationResponse#schedule_configuration #schedule_configuration} => Types::ScheduleConfiguration
562
+ # * {Types::GetDataIntegrationResponse#tags #tags} => Hash&lt;String,String&gt;
563
+ #
564
+ # @example Request syntax with placeholder values
565
+ #
566
+ # resp = client.get_data_integration({
567
+ # identifier: "Identifier", # required
568
+ # })
569
+ #
570
+ # @example Response structure
571
+ #
572
+ # resp.arn #=> String
573
+ # resp.id #=> String
574
+ # resp.name #=> String
575
+ # resp.description #=> String
576
+ # resp.kms_key #=> String
577
+ # resp.source_uri #=> String
578
+ # resp.schedule_configuration.first_execution_from #=> String
579
+ # resp.schedule_configuration.object #=> String
580
+ # resp.schedule_configuration.schedule_expression #=> String
581
+ # resp.tags #=> Hash
582
+ # resp.tags["TagKey"] #=> String
583
+ #
584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegration AWS API Documentation
585
+ #
586
+ # @overload get_data_integration(params = {})
587
+ # @param [Hash] params ({})
588
+ def get_data_integration(params = {}, options = {})
589
+ req = build_request(:get_data_integration, params)
590
+ req.send_request(options)
591
+ end
592
+
593
+ # Returns information about the event integration.
414
594
  #
415
595
  # @option params [required, String] :name
416
596
  # The name of the event integration.
@@ -449,6 +629,111 @@ module Aws::AppIntegrationsService
449
629
  req.send_request(options)
450
630
  end
451
631
 
632
+ # Returns a paginated list of DataIntegration associations in the
633
+ # account.
634
+ #
635
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
636
+ # that has been previously associated. Use a different DataIntegration,
637
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
638
+ # API.
639
+ #
640
+ # </note>
641
+ #
642
+ #
643
+ #
644
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
645
+ #
646
+ # @option params [required, String] :data_integration_identifier
647
+ # A unique identifier for the DataIntegration.
648
+ #
649
+ # @option params [String] :next_token
650
+ # The token for the next set of results. Use the value returned in the
651
+ # previous response in the next request to retrieve the next set of
652
+ # results.
653
+ #
654
+ # @option params [Integer] :max_results
655
+ # The maximum number of results to return per page.
656
+ #
657
+ # @return [Types::ListDataIntegrationAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
658
+ #
659
+ # * {Types::ListDataIntegrationAssociationsResponse#data_integration_associations #data_integration_associations} => Array&lt;Types::DataIntegrationAssociationSummary&gt;
660
+ # * {Types::ListDataIntegrationAssociationsResponse#next_token #next_token} => String
661
+ #
662
+ # @example Request syntax with placeholder values
663
+ #
664
+ # resp = client.list_data_integration_associations({
665
+ # data_integration_identifier: "Identifier", # required
666
+ # next_token: "NextToken",
667
+ # max_results: 1,
668
+ # })
669
+ #
670
+ # @example Response structure
671
+ #
672
+ # resp.data_integration_associations #=> Array
673
+ # resp.data_integration_associations[0].data_integration_association_arn #=> String
674
+ # resp.data_integration_associations[0].data_integration_arn #=> String
675
+ # resp.data_integration_associations[0].client_id #=> String
676
+ # resp.next_token #=> String
677
+ #
678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociations AWS API Documentation
679
+ #
680
+ # @overload list_data_integration_associations(params = {})
681
+ # @param [Hash] params ({})
682
+ def list_data_integration_associations(params = {}, options = {})
683
+ req = build_request(:list_data_integration_associations, params)
684
+ req.send_request(options)
685
+ end
686
+
687
+ # Returns a paginated list of DataIntegrations in the account.
688
+ #
689
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
690
+ # that has been previously associated. Use a different DataIntegration,
691
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
692
+ # API.
693
+ #
694
+ # </note>
695
+ #
696
+ #
697
+ #
698
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
699
+ #
700
+ # @option params [String] :next_token
701
+ # The token for the next set of results. Use the value returned in the
702
+ # previous response in the next request to retrieve the next set of
703
+ # results.
704
+ #
705
+ # @option params [Integer] :max_results
706
+ # The maximum number of results to return per page.
707
+ #
708
+ # @return [Types::ListDataIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
709
+ #
710
+ # * {Types::ListDataIntegrationsResponse#data_integrations #data_integrations} => Array&lt;Types::DataIntegrationSummary&gt;
711
+ # * {Types::ListDataIntegrationsResponse#next_token #next_token} => String
712
+ #
713
+ # @example Request syntax with placeholder values
714
+ #
715
+ # resp = client.list_data_integrations({
716
+ # next_token: "NextToken",
717
+ # max_results: 1,
718
+ # })
719
+ #
720
+ # @example Response structure
721
+ #
722
+ # resp.data_integrations #=> Array
723
+ # resp.data_integrations[0].arn #=> String
724
+ # resp.data_integrations[0].name #=> String
725
+ # resp.data_integrations[0].source_uri #=> String
726
+ # resp.next_token #=> String
727
+ #
728
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrations AWS API Documentation
729
+ #
730
+ # @overload list_data_integrations(params = {})
731
+ # @param [Hash] params ({})
732
+ def list_data_integrations(params = {}, options = {})
733
+ req = build_request(:list_data_integrations, params)
734
+ req.send_request(options)
735
+ end
736
+
452
737
  # Returns a paginated list of event integration associations in the
453
738
  # account.
454
739
  #
@@ -623,6 +908,47 @@ module Aws::AppIntegrationsService
623
908
  req.send_request(options)
624
909
  end
625
910
 
911
+ # Updates the description of a DataIntegration.
912
+ #
913
+ # <note markdown="1"> You cannot create a DataIntegration association for a DataIntegration
914
+ # that has been previously associated. Use a different DataIntegration,
915
+ # or recreate the DataIntegration using the [CreateDataIntegration][1]
916
+ # API.
917
+ #
918
+ # </note>
919
+ #
920
+ #
921
+ #
922
+ # [1]: https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
923
+ #
924
+ # @option params [required, String] :identifier
925
+ # A unique identifier for the DataIntegration.
926
+ #
927
+ # @option params [String] :name
928
+ # The name of the DataIntegration.
929
+ #
930
+ # @option params [String] :description
931
+ # A description of the DataIntegration.
932
+ #
933
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
934
+ #
935
+ # @example Request syntax with placeholder values
936
+ #
937
+ # resp = client.update_data_integration({
938
+ # identifier: "Identifier", # required
939
+ # name: "Name",
940
+ # description: "Description",
941
+ # })
942
+ #
943
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegration AWS API Documentation
944
+ #
945
+ # @overload update_data_integration(params = {})
946
+ # @param [Hash] params ({})
947
+ def update_data_integration(params = {}, options = {})
948
+ req = build_request(:update_data_integration, params)
949
+ req.send_request(options)
950
+ end
951
+
626
952
  # Updates the description of an event integration.
627
953
  #
628
954
  # @option params [required, String] :name
@@ -662,7 +988,7 @@ module Aws::AppIntegrationsService
662
988
  params: params,
663
989
  config: config)
664
990
  context[:gem_name] = 'aws-sdk-appintegrationsservice'
665
- context[:gem_version] = '1.6.0'
991
+ context[:gem_version] = '1.7.0'
666
992
  Seahorse::Client::Request.new(handlers, context)
667
993
  end
668
994
 
@@ -17,8 +17,16 @@ module Aws::AppIntegrationsService
17
17
  Arn = Shapes::StringShape.new(name: 'Arn')
18
18
  ClientAssociationMetadata = Shapes::MapShape.new(name: 'ClientAssociationMetadata')
19
19
  ClientId = Shapes::StringShape.new(name: 'ClientId')
20
+ CreateDataIntegrationRequest = Shapes::StructureShape.new(name: 'CreateDataIntegrationRequest')
21
+ CreateDataIntegrationResponse = Shapes::StructureShape.new(name: 'CreateDataIntegrationResponse')
20
22
  CreateEventIntegrationRequest = Shapes::StructureShape.new(name: 'CreateEventIntegrationRequest')
21
23
  CreateEventIntegrationResponse = Shapes::StructureShape.new(name: 'CreateEventIntegrationResponse')
24
+ DataIntegrationAssociationSummary = Shapes::StructureShape.new(name: 'DataIntegrationAssociationSummary')
25
+ DataIntegrationAssociationsList = Shapes::ListShape.new(name: 'DataIntegrationAssociationsList')
26
+ DataIntegrationSummary = Shapes::StructureShape.new(name: 'DataIntegrationSummary')
27
+ DataIntegrationsList = Shapes::ListShape.new(name: 'DataIntegrationsList')
28
+ DeleteDataIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteDataIntegrationRequest')
29
+ DeleteDataIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteDataIntegrationResponse')
22
30
  DeleteEventIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteEventIntegrationRequest')
23
31
  DeleteEventIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteEventIntegrationResponse')
24
32
  Description = Shapes::StringShape.new(name: 'Description')
@@ -30,11 +38,18 @@ module Aws::AppIntegrationsService
30
38
  EventIntegrationAssociation = Shapes::StructureShape.new(name: 'EventIntegrationAssociation')
31
39
  EventIntegrationAssociationsList = Shapes::ListShape.new(name: 'EventIntegrationAssociationsList')
32
40
  EventIntegrationsList = Shapes::ListShape.new(name: 'EventIntegrationsList')
41
+ GetDataIntegrationRequest = Shapes::StructureShape.new(name: 'GetDataIntegrationRequest')
42
+ GetDataIntegrationResponse = Shapes::StructureShape.new(name: 'GetDataIntegrationResponse')
33
43
  GetEventIntegrationRequest = Shapes::StructureShape.new(name: 'GetEventIntegrationRequest')
34
44
  GetEventIntegrationResponse = Shapes::StructureShape.new(name: 'GetEventIntegrationResponse')
35
45
  IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
46
+ Identifier = Shapes::StringShape.new(name: 'Identifier')
36
47
  InternalServiceError = Shapes::StructureShape.new(name: 'InternalServiceError')
37
48
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
49
+ ListDataIntegrationAssociationsRequest = Shapes::StructureShape.new(name: 'ListDataIntegrationAssociationsRequest')
50
+ ListDataIntegrationAssociationsResponse = Shapes::StructureShape.new(name: 'ListDataIntegrationAssociationsResponse')
51
+ ListDataIntegrationsRequest = Shapes::StructureShape.new(name: 'ListDataIntegrationsRequest')
52
+ ListDataIntegrationsResponse = Shapes::StructureShape.new(name: 'ListDataIntegrationsResponse')
38
53
  ListEventIntegrationAssociationsRequest = Shapes::StructureShape.new(name: 'ListEventIntegrationAssociationsRequest')
39
54
  ListEventIntegrationAssociationsResponse = Shapes::StructureShape.new(name: 'ListEventIntegrationAssociationsResponse')
40
55
  ListEventIntegrationsRequest = Shapes::StructureShape.new(name: 'ListEventIntegrationsRequest')
@@ -46,8 +61,11 @@ module Aws::AppIntegrationsService
46
61
  Name = Shapes::StringShape.new(name: 'Name')
47
62
  NextToken = Shapes::StringShape.new(name: 'NextToken')
48
63
  NonBlankString = Shapes::StringShape.new(name: 'NonBlankString')
64
+ Object = Shapes::StringShape.new(name: 'Object')
49
65
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
50
66
  ResourceQuotaExceededException = Shapes::StructureShape.new(name: 'ResourceQuotaExceededException')
67
+ Schedule = Shapes::StringShape.new(name: 'Schedule')
68
+ ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
51
69
  Source = Shapes::StringShape.new(name: 'Source')
52
70
  TagKey = Shapes::StringShape.new(name: 'TagKey')
53
71
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
@@ -59,6 +77,8 @@ module Aws::AppIntegrationsService
59
77
  UUID = Shapes::StringShape.new(name: 'UUID')
60
78
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
61
79
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
80
+ UpdateDataIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateDataIntegrationRequest')
81
+ UpdateDataIntegrationResponse = Shapes::StructureShape.new(name: 'UpdateDataIntegrationResponse')
62
82
  UpdateEventIntegrationRequest = Shapes::StructureShape.new(name: 'UpdateEventIntegrationRequest')
63
83
  UpdateEventIntegrationResponse = Shapes::StructureShape.new(name: 'UpdateEventIntegrationResponse')
64
84
 
@@ -68,6 +88,26 @@ module Aws::AppIntegrationsService
68
88
  ClientAssociationMetadata.key = Shapes::ShapeRef.new(shape: NonBlankString)
69
89
  ClientAssociationMetadata.value = Shapes::ShapeRef.new(shape: NonBlankString)
70
90
 
91
+ CreateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
92
+ CreateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
93
+ CreateDataIntegrationRequest.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
94
+ CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "SourceURI"))
95
+ CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfig"))
96
+ CreateDataIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
97
+ CreateDataIntegrationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
98
+ CreateDataIntegrationRequest.struct_class = Types::CreateDataIntegrationRequest
99
+
100
+ CreateDataIntegrationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
101
+ CreateDataIntegrationResponse.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "Id"))
102
+ CreateDataIntegrationResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
103
+ CreateDataIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
104
+ CreateDataIntegrationResponse.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
105
+ CreateDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "SourceURI"))
106
+ CreateDataIntegrationResponse.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
107
+ CreateDataIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
108
+ CreateDataIntegrationResponse.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken"))
109
+ CreateDataIntegrationResponse.struct_class = Types::CreateDataIntegrationResponse
110
+
71
111
  CreateEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
72
112
  CreateEventIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
73
113
  CreateEventIntegrationRequest.add_member(:event_filter, Shapes::ShapeRef.new(shape: EventFilter, required: true, location_name: "EventFilter"))
@@ -79,6 +119,25 @@ module Aws::AppIntegrationsService
79
119
  CreateEventIntegrationResponse.add_member(:event_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventIntegrationArn"))
80
120
  CreateEventIntegrationResponse.struct_class = Types::CreateEventIntegrationResponse
81
121
 
122
+ DataIntegrationAssociationSummary.add_member(:data_integration_association_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationAssociationArn"))
123
+ DataIntegrationAssociationSummary.add_member(:data_integration_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DataIntegrationArn"))
124
+ DataIntegrationAssociationSummary.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "ClientId"))
125
+ DataIntegrationAssociationSummary.struct_class = Types::DataIntegrationAssociationSummary
126
+
127
+ DataIntegrationAssociationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationAssociationSummary)
128
+
129
+ DataIntegrationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
130
+ DataIntegrationSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
131
+ DataIntegrationSummary.add_member(:source_uri, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "SourceURI"))
132
+ DataIntegrationSummary.struct_class = Types::DataIntegrationSummary
133
+
134
+ DataIntegrationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationSummary)
135
+
136
+ DeleteDataIntegrationRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
137
+ DeleteDataIntegrationRequest.struct_class = Types::DeleteDataIntegrationRequest
138
+
139
+ DeleteDataIntegrationResponse.struct_class = Types::DeleteDataIntegrationResponse
140
+
82
141
  DeleteEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
83
142
  DeleteEventIntegrationRequest.struct_class = Types::DeleteEventIntegrationRequest
84
143
 
@@ -110,6 +169,19 @@ module Aws::AppIntegrationsService
110
169
 
111
170
  EventIntegrationsList.member = Shapes::ShapeRef.new(shape: EventIntegration)
112
171
 
172
+ GetDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
173
+ GetDataIntegrationRequest.struct_class = Types::GetDataIntegrationRequest
174
+
175
+ GetDataIntegrationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
176
+ GetDataIntegrationResponse.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "Id"))
177
+ GetDataIntegrationResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
178
+ GetDataIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
179
+ GetDataIntegrationResponse.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "KmsKey"))
180
+ GetDataIntegrationResponse.add_member(:source_uri, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "SourceURI"))
181
+ GetDataIntegrationResponse.add_member(:schedule_configuration, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfiguration"))
182
+ GetDataIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
183
+ GetDataIntegrationResponse.struct_class = Types::GetDataIntegrationResponse
184
+
113
185
  GetEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
114
186
  GetEventIntegrationRequest.struct_class = Types::GetEventIntegrationRequest
115
187
 
@@ -127,6 +199,23 @@ module Aws::AppIntegrationsService
127
199
  InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
128
200
  InvalidRequestException.struct_class = Types::InvalidRequestException
129
201
 
202
+ ListDataIntegrationAssociationsRequest.add_member(:data_integration_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
203
+ ListDataIntegrationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
204
+ ListDataIntegrationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
205
+ ListDataIntegrationAssociationsRequest.struct_class = Types::ListDataIntegrationAssociationsRequest
206
+
207
+ ListDataIntegrationAssociationsResponse.add_member(:data_integration_associations, Shapes::ShapeRef.new(shape: DataIntegrationAssociationsList, location_name: "DataIntegrationAssociations"))
208
+ ListDataIntegrationAssociationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
209
+ ListDataIntegrationAssociationsResponse.struct_class = Types::ListDataIntegrationAssociationsResponse
210
+
211
+ ListDataIntegrationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
212
+ ListDataIntegrationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
213
+ ListDataIntegrationsRequest.struct_class = Types::ListDataIntegrationsRequest
214
+
215
+ ListDataIntegrationsResponse.add_member(:data_integrations, Shapes::ShapeRef.new(shape: DataIntegrationsList, location_name: "DataIntegrations"))
216
+ ListDataIntegrationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
217
+ ListDataIntegrationsResponse.struct_class = Types::ListDataIntegrationsResponse
218
+
130
219
  ListEventIntegrationAssociationsRequest.add_member(:event_integration_name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
131
220
  ListEventIntegrationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
132
221
  ListEventIntegrationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
@@ -156,6 +245,11 @@ module Aws::AppIntegrationsService
156
245
  ResourceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
157
246
  ResourceQuotaExceededException.struct_class = Types::ResourceQuotaExceededException
158
247
 
248
+ ScheduleConfiguration.add_member(:first_execution_from, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "FirstExecutionFrom"))
249
+ ScheduleConfiguration.add_member(:object, Shapes::ShapeRef.new(shape: Object, location_name: "Object"))
250
+ ScheduleConfiguration.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: Schedule, location_name: "ScheduleExpression"))
251
+ ScheduleConfiguration.struct_class = Types::ScheduleConfiguration
252
+
159
253
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
160
254
 
161
255
  TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
@@ -176,6 +270,13 @@ module Aws::AppIntegrationsService
176
270
 
177
271
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
178
272
 
273
+ UpdateDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
274
+ UpdateDataIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
275
+ UpdateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
276
+ UpdateDataIntegrationRequest.struct_class = Types::UpdateDataIntegrationRequest
277
+
278
+ UpdateDataIntegrationResponse.struct_class = Types::UpdateDataIntegrationResponse
279
+
179
280
  UpdateEventIntegrationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location: "uri", location_name: "Name"))
180
281
  UpdateEventIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
181
282
  UpdateEventIntegrationRequest.struct_class = Types::UpdateEventIntegrationRequest
@@ -200,6 +301,20 @@ module Aws::AppIntegrationsService
200
301
  "uid" => "appintegrations-2020-07-29",
201
302
  }
202
303
 
304
+ api.add_operation(:create_data_integration, Seahorse::Model::Operation.new.tap do |o|
305
+ o.name = "CreateDataIntegration"
306
+ o.http_method = "POST"
307
+ o.http_request_uri = "/dataIntegrations"
308
+ o.input = Shapes::ShapeRef.new(shape: CreateDataIntegrationRequest)
309
+ o.output = Shapes::ShapeRef.new(shape: CreateDataIntegrationResponse)
310
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
311
+ o.errors << Shapes::ShapeRef.new(shape: ResourceQuotaExceededException)
312
+ o.errors << Shapes::ShapeRef.new(shape: DuplicateResourceException)
313
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
314
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
315
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
316
+ end)
317
+
203
318
  api.add_operation(:create_event_integration, Seahorse::Model::Operation.new.tap do |o|
204
319
  o.name = "CreateEventIntegration"
205
320
  o.http_method = "POST"
@@ -214,6 +329,19 @@ module Aws::AppIntegrationsService
214
329
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
215
330
  end)
216
331
 
332
+ api.add_operation(:delete_data_integration, Seahorse::Model::Operation.new.tap do |o|
333
+ o.name = "DeleteDataIntegration"
334
+ o.http_method = "DELETE"
335
+ o.http_request_uri = "/dataIntegrations/{Identifier}"
336
+ o.input = Shapes::ShapeRef.new(shape: DeleteDataIntegrationRequest)
337
+ o.output = Shapes::ShapeRef.new(shape: DeleteDataIntegrationResponse)
338
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
339
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
340
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
341
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
342
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
343
+ end)
344
+
217
345
  api.add_operation(:delete_event_integration, Seahorse::Model::Operation.new.tap do |o|
218
346
  o.name = "DeleteEventIntegration"
219
347
  o.http_method = "DELETE"
@@ -227,6 +355,19 @@ module Aws::AppIntegrationsService
227
355
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
228
356
  end)
229
357
 
358
+ api.add_operation(:get_data_integration, Seahorse::Model::Operation.new.tap do |o|
359
+ o.name = "GetDataIntegration"
360
+ o.http_method = "GET"
361
+ o.http_request_uri = "/dataIntegrations/{Identifier}"
362
+ o.input = Shapes::ShapeRef.new(shape: GetDataIntegrationRequest)
363
+ o.output = Shapes::ShapeRef.new(shape: GetDataIntegrationResponse)
364
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
365
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
366
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
367
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
368
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
369
+ end)
370
+
230
371
  api.add_operation(:get_event_integration, Seahorse::Model::Operation.new.tap do |o|
231
372
  o.name = "GetEventIntegration"
232
373
  o.http_method = "GET"
@@ -240,6 +381,31 @@ module Aws::AppIntegrationsService
240
381
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
241
382
  end)
242
383
 
384
+ api.add_operation(:list_data_integration_associations, Seahorse::Model::Operation.new.tap do |o|
385
+ o.name = "ListDataIntegrationAssociations"
386
+ o.http_method = "GET"
387
+ o.http_request_uri = "/dataIntegrations/{Identifier}/associations"
388
+ o.input = Shapes::ShapeRef.new(shape: ListDataIntegrationAssociationsRequest)
389
+ o.output = Shapes::ShapeRef.new(shape: ListDataIntegrationAssociationsResponse)
390
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
391
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
392
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
393
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
394
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
395
+ end)
396
+
397
+ api.add_operation(:list_data_integrations, Seahorse::Model::Operation.new.tap do |o|
398
+ o.name = "ListDataIntegrations"
399
+ o.http_method = "GET"
400
+ o.http_request_uri = "/dataIntegrations"
401
+ o.input = Shapes::ShapeRef.new(shape: ListDataIntegrationsRequest)
402
+ o.output = Shapes::ShapeRef.new(shape: ListDataIntegrationsResponse)
403
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
404
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
405
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
406
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
407
+ end)
408
+
243
409
  api.add_operation(:list_event_integration_associations, Seahorse::Model::Operation.new.tap do |o|
244
410
  o.name = "ListEventIntegrationAssociations"
245
411
  o.http_method = "GET"
@@ -301,6 +467,19 @@ module Aws::AppIntegrationsService
301
467
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
302
468
  end)
303
469
 
470
+ api.add_operation(:update_data_integration, Seahorse::Model::Operation.new.tap do |o|
471
+ o.name = "UpdateDataIntegration"
472
+ o.http_method = "PATCH"
473
+ o.http_request_uri = "/dataIntegrations/{Identifier}"
474
+ o.input = Shapes::ShapeRef.new(shape: UpdateDataIntegrationRequest)
475
+ o.output = Shapes::ShapeRef.new(shape: UpdateDataIntegrationResponse)
476
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
477
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
478
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
479
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
480
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
481
+ end)
482
+
304
483
  api.add_operation(:update_event_integration, Seahorse::Model::Operation.new.tap do |o|
305
484
  o.name = "UpdateEventIntegration"
306
485
  o.http_method = "PATCH"
@@ -23,6 +23,126 @@ module Aws::AppIntegrationsService
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
+ # @note When making an API call, you may pass CreateDataIntegrationRequest
27
+ # data as a hash:
28
+ #
29
+ # {
30
+ # name: "Name", # required
31
+ # description: "Description",
32
+ # kms_key: "NonBlankString",
33
+ # source_uri: "NonBlankString",
34
+ # schedule_config: {
35
+ # first_execution_from: "NonBlankString",
36
+ # object: "Object",
37
+ # schedule_expression: "Schedule",
38
+ # },
39
+ # tags: {
40
+ # "TagKey" => "TagValue",
41
+ # },
42
+ # client_token: "IdempotencyToken",
43
+ # }
44
+ #
45
+ # @!attribute [rw] name
46
+ # The name of the DataIntegration.
47
+ # @return [String]
48
+ #
49
+ # @!attribute [rw] description
50
+ # A description of the DataIntegration.
51
+ # @return [String]
52
+ #
53
+ # @!attribute [rw] kms_key
54
+ # The KMS key for the DataIntegration.
55
+ # @return [String]
56
+ #
57
+ # @!attribute [rw] source_uri
58
+ # The URI of the data source.
59
+ # @return [String]
60
+ #
61
+ # @!attribute [rw] schedule_config
62
+ # The name of the data and how often it should be pulled from the
63
+ # source.
64
+ # @return [Types::ScheduleConfiguration]
65
+ #
66
+ # @!attribute [rw] tags
67
+ # One or more tags.
68
+ # @return [Hash<String,String>]
69
+ #
70
+ # @!attribute [rw] client_token
71
+ # A unique, case-sensitive identifier that you provide to ensure the
72
+ # idempotency of the request.
73
+ #
74
+ # **A suitable default value is auto-generated.** You should normally
75
+ # not need to pass this option.
76
+ # @return [String]
77
+ #
78
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationRequest AWS API Documentation
79
+ #
80
+ class CreateDataIntegrationRequest < Struct.new(
81
+ :name,
82
+ :description,
83
+ :kms_key,
84
+ :source_uri,
85
+ :schedule_config,
86
+ :tags,
87
+ :client_token)
88
+ SENSITIVE = []
89
+ include Aws::Structure
90
+ end
91
+
92
+ # @!attribute [rw] arn
93
+ # The Amazon Resource Name (ARN)
94
+ # @return [String]
95
+ #
96
+ # @!attribute [rw] id
97
+ # A unique identifier.
98
+ # @return [String]
99
+ #
100
+ # @!attribute [rw] name
101
+ # The name of the DataIntegration.
102
+ # @return [String]
103
+ #
104
+ # @!attribute [rw] description
105
+ # A description of the DataIntegration.
106
+ # @return [String]
107
+ #
108
+ # @!attribute [rw] kms_key
109
+ # The KMS key for the DataIntegration.
110
+ # @return [String]
111
+ #
112
+ # @!attribute [rw] source_uri
113
+ # The URI of the data source.
114
+ # @return [String]
115
+ #
116
+ # @!attribute [rw] schedule_configuration
117
+ # The name of the data and how often it should be pulled from the
118
+ # source.
119
+ # @return [Types::ScheduleConfiguration]
120
+ #
121
+ # @!attribute [rw] tags
122
+ # One or more tags.
123
+ # @return [Hash<String,String>]
124
+ #
125
+ # @!attribute [rw] client_token
126
+ # A unique, case-sensitive identifier that you provide to ensure the
127
+ # idempotency of the request.
128
+ # @return [String]
129
+ #
130
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateDataIntegrationResponse AWS API Documentation
131
+ #
132
+ class CreateDataIntegrationResponse < Struct.new(
133
+ :arn,
134
+ :id,
135
+ :name,
136
+ :description,
137
+ :kms_key,
138
+ :source_uri,
139
+ :schedule_configuration,
140
+ :tags,
141
+ :client_token)
142
+ SENSITIVE = []
143
+ include Aws::Structure
144
+ end
145
+
26
146
  # @note When making an API call, you may pass CreateEventIntegrationRequest
27
147
  # data as a hash:
28
148
  #
@@ -92,6 +212,78 @@ module Aws::AppIntegrationsService
92
212
  include Aws::Structure
93
213
  end
94
214
 
215
+ # Summary information about the DataIntegration association.
216
+ #
217
+ # @!attribute [rw] data_integration_association_arn
218
+ # The Amazon Resource Name (ARN) of the DataIntegration association.
219
+ # @return [String]
220
+ #
221
+ # @!attribute [rw] data_integration_arn
222
+ # The Amazon Resource Name (ARN)of the DataIntegration.
223
+ # @return [String]
224
+ #
225
+ # @!attribute [rw] client_id
226
+ # The identifier for teh client that is associated with the
227
+ # DataIntegration association.
228
+ # @return [String]
229
+ #
230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DataIntegrationAssociationSummary AWS API Documentation
231
+ #
232
+ class DataIntegrationAssociationSummary < Struct.new(
233
+ :data_integration_association_arn,
234
+ :data_integration_arn,
235
+ :client_id)
236
+ SENSITIVE = []
237
+ include Aws::Structure
238
+ end
239
+
240
+ # Summary information about the DataIntegration.
241
+ #
242
+ # @!attribute [rw] arn
243
+ # The Amazon Resource Name (ARN) of the DataIntegration.
244
+ # @return [String]
245
+ #
246
+ # @!attribute [rw] name
247
+ # The name of the DataIntegration.
248
+ # @return [String]
249
+ #
250
+ # @!attribute [rw] source_uri
251
+ # The URI of the data source.
252
+ # @return [String]
253
+ #
254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DataIntegrationSummary AWS API Documentation
255
+ #
256
+ class DataIntegrationSummary < Struct.new(
257
+ :arn,
258
+ :name,
259
+ :source_uri)
260
+ SENSITIVE = []
261
+ include Aws::Structure
262
+ end
263
+
264
+ # @note When making an API call, you may pass DeleteDataIntegrationRequest
265
+ # data as a hash:
266
+ #
267
+ # {
268
+ # data_integration_identifier: "Identifier", # required
269
+ # }
270
+ #
271
+ # @!attribute [rw] data_integration_identifier
272
+ # A unique identifier for the DataIntegration.
273
+ # @return [String]
274
+ #
275
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteDataIntegrationRequest AWS API Documentation
276
+ #
277
+ class DeleteDataIntegrationRequest < Struct.new(
278
+ :data_integration_identifier)
279
+ SENSITIVE = []
280
+ include Aws::Structure
281
+ end
282
+
283
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteDataIntegrationResponse AWS API Documentation
284
+ #
285
+ class DeleteDataIntegrationResponse < Aws::EmptyStructure; end
286
+
95
287
  # @note When making an API call, you may pass DeleteEventIntegrationRequest
96
288
  # data as a hash:
97
289
  #
@@ -229,6 +421,73 @@ module Aws::AppIntegrationsService
229
421
  include Aws::Structure
230
422
  end
231
423
 
424
+ # @note When making an API call, you may pass GetDataIntegrationRequest
425
+ # data as a hash:
426
+ #
427
+ # {
428
+ # identifier: "Identifier", # required
429
+ # }
430
+ #
431
+ # @!attribute [rw] identifier
432
+ # A unique identifier.
433
+ # @return [String]
434
+ #
435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegrationRequest AWS API Documentation
436
+ #
437
+ class GetDataIntegrationRequest < Struct.new(
438
+ :identifier)
439
+ SENSITIVE = []
440
+ include Aws::Structure
441
+ end
442
+
443
+ # @!attribute [rw] arn
444
+ # The Amazon Resource Name (ARN) for the DataIntegration.
445
+ # @return [String]
446
+ #
447
+ # @!attribute [rw] id
448
+ # A unique identifier.
449
+ # @return [String]
450
+ #
451
+ # @!attribute [rw] name
452
+ # The name of the DataIntegration.
453
+ # @return [String]
454
+ #
455
+ # @!attribute [rw] description
456
+ # The KMS key for the DataIntegration.
457
+ # @return [String]
458
+ #
459
+ # @!attribute [rw] kms_key
460
+ # The KMS key for the DataIntegration.
461
+ # @return [String]
462
+ #
463
+ # @!attribute [rw] source_uri
464
+ # The URI of the data source.
465
+ # @return [String]
466
+ #
467
+ # @!attribute [rw] schedule_configuration
468
+ # The name of the data and how often it should be pulled from the
469
+ # source.
470
+ # @return [Types::ScheduleConfiguration]
471
+ #
472
+ # @!attribute [rw] tags
473
+ # One or more tags.
474
+ # @return [Hash<String,String>]
475
+ #
476
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetDataIntegrationResponse AWS API Documentation
477
+ #
478
+ class GetDataIntegrationResponse < Struct.new(
479
+ :arn,
480
+ :id,
481
+ :name,
482
+ :description,
483
+ :kms_key,
484
+ :source_uri,
485
+ :schedule_configuration,
486
+ :tags)
487
+ SENSITIVE = []
488
+ include Aws::Structure
489
+ end
490
+
232
491
  # @note When making an API call, you may pass GetEventIntegrationRequest
233
492
  # data as a hash:
234
493
  #
@@ -311,6 +570,103 @@ module Aws::AppIntegrationsService
311
570
  include Aws::Structure
312
571
  end
313
572
 
573
+ # @note When making an API call, you may pass ListDataIntegrationAssociationsRequest
574
+ # data as a hash:
575
+ #
576
+ # {
577
+ # data_integration_identifier: "Identifier", # required
578
+ # next_token: "NextToken",
579
+ # max_results: 1,
580
+ # }
581
+ #
582
+ # @!attribute [rw] data_integration_identifier
583
+ # A unique identifier for the DataIntegration.
584
+ # @return [String]
585
+ #
586
+ # @!attribute [rw] next_token
587
+ # The token for the next set of results. Use the value returned in the
588
+ # previous response in the next request to retrieve the next set of
589
+ # results.
590
+ # @return [String]
591
+ #
592
+ # @!attribute [rw] max_results
593
+ # The maximum number of results to return per page.
594
+ # @return [Integer]
595
+ #
596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociationsRequest AWS API Documentation
597
+ #
598
+ class ListDataIntegrationAssociationsRequest < Struct.new(
599
+ :data_integration_identifier,
600
+ :next_token,
601
+ :max_results)
602
+ SENSITIVE = []
603
+ include Aws::Structure
604
+ end
605
+
606
+ # @!attribute [rw] data_integration_associations
607
+ # The Amazon Resource Name (ARN) and unique ID of the DataIntegration
608
+ # association.
609
+ # @return [Array<Types::DataIntegrationAssociationSummary>]
610
+ #
611
+ # @!attribute [rw] next_token
612
+ # If there are additional results, this is the token for the next set
613
+ # of results.
614
+ # @return [String]
615
+ #
616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationAssociationsResponse AWS API Documentation
617
+ #
618
+ class ListDataIntegrationAssociationsResponse < Struct.new(
619
+ :data_integration_associations,
620
+ :next_token)
621
+ SENSITIVE = []
622
+ include Aws::Structure
623
+ end
624
+
625
+ # @note When making an API call, you may pass ListDataIntegrationsRequest
626
+ # data as a hash:
627
+ #
628
+ # {
629
+ # next_token: "NextToken",
630
+ # max_results: 1,
631
+ # }
632
+ #
633
+ # @!attribute [rw] next_token
634
+ # The token for the next set of results. Use the value returned in the
635
+ # previous response in the next request to retrieve the next set of
636
+ # results.
637
+ # @return [String]
638
+ #
639
+ # @!attribute [rw] max_results
640
+ # The maximum number of results to return per page.
641
+ # @return [Integer]
642
+ #
643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationsRequest AWS API Documentation
644
+ #
645
+ class ListDataIntegrationsRequest < Struct.new(
646
+ :next_token,
647
+ :max_results)
648
+ SENSITIVE = []
649
+ include Aws::Structure
650
+ end
651
+
652
+ # @!attribute [rw] data_integrations
653
+ # The DataIntegrations associated with this account.
654
+ # @return [Array<Types::DataIntegrationSummary>]
655
+ #
656
+ # @!attribute [rw] next_token
657
+ # If there are additional results, this is the token for the next set
658
+ # of results.
659
+ # @return [String]
660
+ #
661
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrationsResponse AWS API Documentation
662
+ #
663
+ class ListDataIntegrationsResponse < Struct.new(
664
+ :data_integrations,
665
+ :next_token)
666
+ SENSITIVE = []
667
+ include Aws::Structure
668
+ end
669
+
314
670
  # @note When making an API call, you may pass ListEventIntegrationAssociationsRequest
315
671
  # data as a hash:
316
672
  #
@@ -464,6 +820,40 @@ module Aws::AppIntegrationsService
464
820
  include Aws::Structure
465
821
  end
466
822
 
823
+ # The name of the data and how often it should be pulled from the
824
+ # source.
825
+ #
826
+ # @note When making an API call, you may pass ScheduleConfiguration
827
+ # data as a hash:
828
+ #
829
+ # {
830
+ # first_execution_from: "NonBlankString",
831
+ # object: "Object",
832
+ # schedule_expression: "Schedule",
833
+ # }
834
+ #
835
+ # @!attribute [rw] first_execution_from
836
+ # The start date for objects to import in the first flow run.
837
+ # @return [String]
838
+ #
839
+ # @!attribute [rw] object
840
+ # The name of the object to pull from the data source.
841
+ # @return [String]
842
+ #
843
+ # @!attribute [rw] schedule_expression
844
+ # How often the data should be pulled from data source.
845
+ # @return [String]
846
+ #
847
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ScheduleConfiguration AWS API Documentation
848
+ #
849
+ class ScheduleConfiguration < Struct.new(
850
+ :first_execution_from,
851
+ :object,
852
+ :schedule_expression)
853
+ SENSITIVE = []
854
+ include Aws::Structure
855
+ end
856
+
467
857
  # @note When making an API call, you may pass TagResourceRequest
468
858
  # data as a hash:
469
859
  #
@@ -537,6 +927,41 @@ module Aws::AppIntegrationsService
537
927
  #
538
928
  class UntagResourceResponse < Aws::EmptyStructure; end
539
929
 
930
+ # @note When making an API call, you may pass UpdateDataIntegrationRequest
931
+ # data as a hash:
932
+ #
933
+ # {
934
+ # identifier: "Identifier", # required
935
+ # name: "Name",
936
+ # description: "Description",
937
+ # }
938
+ #
939
+ # @!attribute [rw] identifier
940
+ # A unique identifier for the DataIntegration.
941
+ # @return [String]
942
+ #
943
+ # @!attribute [rw] name
944
+ # The name of the DataIntegration.
945
+ # @return [String]
946
+ #
947
+ # @!attribute [rw] description
948
+ # A description of the DataIntegration.
949
+ # @return [String]
950
+ #
951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationRequest AWS API Documentation
952
+ #
953
+ class UpdateDataIntegrationRequest < Struct.new(
954
+ :identifier,
955
+ :name,
956
+ :description)
957
+ SENSITIVE = []
958
+ include Aws::Structure
959
+ end
960
+
961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateDataIntegrationResponse AWS API Documentation
962
+ #
963
+ class UpdateDataIntegrationResponse < Aws::EmptyStructure; end
964
+
540
965
  # @note When making an API call, you may pass UpdateEventIntegrationRequest
541
966
  # data as a hash:
542
967
  #
@@ -28,7 +28,7 @@ require_relative 'aws-sdk-appintegrationsservice/customizations'
28
28
  # structure.
29
29
  #
30
30
  # app_integrations_service = Aws::AppIntegrationsService::Client.new
31
- # resp = app_integrations_service.create_event_integration(params)
31
+ # resp = app_integrations_service.create_data_integration(params)
32
32
  #
33
33
  # See {Client} for more information.
34
34
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appintegrationsservice/customizations'
48
48
  # @!group service
49
49
  module Aws::AppIntegrationsService
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
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.6.0
4
+ version: 1.7.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core