aws-sdk-appintegrationsservice 1.52.0 → 1.53.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: 5cdf1f585283eab4fef5aea7565a62839d1f4f9fcb5702e8108dbc63da27efe0
4
- data.tar.gz: 300b2b7f21fecdb952a5f92894d5319696acf43323e90a585cf23cdfa90b286e
3
+ metadata.gz: b66800dcd4618d80c46075b624e281f5510c680b81c362280ca0f7e3ada6feb6
4
+ data.tar.gz: d1190124042d134f717ca9e8c1bde713f02cb58eb62e2050868e7105ab1d0533
5
5
  SHA512:
6
- metadata.gz: e5b5ebc0bc0b5029081438ae702744a4290b6f2bfe50c7ccdd339ae967827543df63cf95ce3c14c3495efeb8d44988ddc069d153501666cfd1847cb745ab17bd
7
- data.tar.gz: f3cd47368f905429cbee779e17548dc54c4fe135fde9cb2231073015557b0cf103dbc424d4741cc795538cbc316b9ab49577fea7764d1575f0472faaa73ee13a
6
+ metadata.gz: 7a459f173f117fbdbc059e31dbd31fc05dd9e0609f170ea8ab68d448819c244624646b637c6c6c1b0d8420d29bfbeef9764233db600bf04b449de2d827abb674
7
+ data.tar.gz: ee63e557260f87198daae8ed8ca3a94d4c183dc74d168123f7762a0b1ef7a618ccc0e3ae57dc60c733279714a8a2037a0f3964e9d288f4a9b49342665d989893
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2025-07-25)
5
+ ------------------
6
+
7
+ * Feature - Amazon AppIntegrations introduces new configuration capabilities to enable customers to manage iframe permissions, control application refresh behavior (per contact or per browser/cross-contact), and run background applications (service).
8
+
4
9
  1.52.0 (2025-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -521,6 +521,19 @@ module Aws::AppIntegrationsService
521
521
  # The configuration of events or requests that the application has
522
522
  # access to.
523
523
  #
524
+ # @option params [Boolean] :is_service
525
+ # Indicates whether the application is a service.
526
+ #
527
+ # @option params [Integer] :initialization_timeout
528
+ # The maximum time in milliseconds allowed to establish a connection
529
+ # with the workspace.
530
+ #
531
+ # @option params [Types::ApplicationConfig] :application_config
532
+ # The configuration settings for the application.
533
+ #
534
+ # @option params [Types::IframeConfig] :iframe_config
535
+ # The iframe configuration for the application.
536
+ #
524
537
  # @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
525
538
  #
526
539
  # * {Types::CreateApplicationResponse#arn #arn} => String
@@ -578,6 +591,17 @@ module Aws::AppIntegrationsService
578
591
  # "TagKey" => "TagValue",
579
592
  # },
580
593
  # permissions: ["Permission"],
594
+ # is_service: false,
595
+ # initialization_timeout: 1,
596
+ # application_config: {
597
+ # contact_handling: {
598
+ # scope: "CROSS_CONTACTS", # accepts CROSS_CONTACTS, PER_CONTACT
599
+ # },
600
+ # },
601
+ # iframe_config: {
602
+ # allow: ["IframePermission"],
603
+ # sandbox: ["IframePermission"],
604
+ # },
581
605
  # })
582
606
  #
583
607
  # @example Response structure
@@ -982,6 +1006,10 @@ module Aws::AppIntegrationsService
982
1006
  # * {Types::GetApplicationResponse#last_modified_time #last_modified_time} => Time
983
1007
  # * {Types::GetApplicationResponse#tags #tags} => Hash<String,String>
984
1008
  # * {Types::GetApplicationResponse#permissions #permissions} => Array<String>
1009
+ # * {Types::GetApplicationResponse#is_service #is_service} => Boolean
1010
+ # * {Types::GetApplicationResponse#initialization_timeout #initialization_timeout} => Integer
1011
+ # * {Types::GetApplicationResponse#application_config #application_config} => Types::ApplicationConfig
1012
+ # * {Types::GetApplicationResponse#iframe_config #iframe_config} => Types::IframeConfig
985
1013
  #
986
1014
  #
987
1015
  # @example Example: To get an application
@@ -1033,6 +1061,13 @@ module Aws::AppIntegrationsService
1033
1061
  # resp.tags["TagKey"] #=> String
1034
1062
  # resp.permissions #=> Array
1035
1063
  # resp.permissions[0] #=> String
1064
+ # resp.is_service #=> Boolean
1065
+ # resp.initialization_timeout #=> Integer
1066
+ # resp.application_config.contact_handling.scope #=> String, one of "CROSS_CONTACTS", "PER_CONTACT"
1067
+ # resp.iframe_config.allow #=> Array
1068
+ # resp.iframe_config.allow[0] #=> String
1069
+ # resp.iframe_config.sandbox #=> Array
1070
+ # resp.iframe_config.sandbox[0] #=> String
1036
1071
  #
1037
1072
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetApplication AWS API Documentation
1038
1073
  #
@@ -1271,6 +1306,7 @@ module Aws::AppIntegrationsService
1271
1306
  # resp.applications[0].namespace #=> String
1272
1307
  # resp.applications[0].created_time #=> Time
1273
1308
  # resp.applications[0].last_modified_time #=> Time
1309
+ # resp.applications[0].is_service #=> Boolean
1274
1310
  # resp.next_token #=> String
1275
1311
  #
1276
1312
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListApplications AWS API Documentation
@@ -1604,6 +1640,19 @@ module Aws::AppIntegrationsService
1604
1640
  # The configuration of events or requests that the application has
1605
1641
  # access to.
1606
1642
  #
1643
+ # @option params [Boolean] :is_service
1644
+ # Indicates whether the application is a service.
1645
+ #
1646
+ # @option params [Integer] :initialization_timeout
1647
+ # The maximum time in milliseconds allowed to establish a connection
1648
+ # with the workspace.
1649
+ #
1650
+ # @option params [Types::ApplicationConfig] :application_config
1651
+ # The configuration settings for the application.
1652
+ #
1653
+ # @option params [Types::IframeConfig] :iframe_config
1654
+ # The iframe configuration for the application.
1655
+ #
1607
1656
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1608
1657
  #
1609
1658
  #
@@ -1646,6 +1695,17 @@ module Aws::AppIntegrationsService
1646
1695
  # },
1647
1696
  # ],
1648
1697
  # permissions: ["Permission"],
1698
+ # is_service: false,
1699
+ # initialization_timeout: 1,
1700
+ # application_config: {
1701
+ # contact_handling: {
1702
+ # scope: "CROSS_CONTACTS", # accepts CROSS_CONTACTS, PER_CONTACT
1703
+ # },
1704
+ # },
1705
+ # iframe_config: {
1706
+ # allow: ["IframePermission"],
1707
+ # sandbox: ["IframePermission"],
1708
+ # },
1649
1709
  # })
1650
1710
  #
1651
1711
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateApplication AWS API Documentation
@@ -1788,7 +1848,7 @@ module Aws::AppIntegrationsService
1788
1848
  tracer: tracer
1789
1849
  )
1790
1850
  context[:gem_name] = 'aws-sdk-appintegrationsservice'
1791
- context[:gem_version] = '1.52.0'
1851
+ context[:gem_version] = '1.53.0'
1792
1852
  Seahorse::Client::Request.new(handlers, context)
1793
1853
  end
1794
1854
 
@@ -18,6 +18,7 @@ module Aws::AppIntegrationsService
18
18
  ApplicationApprovedOrigins = Shapes::ListShape.new(name: 'ApplicationApprovedOrigins')
19
19
  ApplicationAssociationSummary = Shapes::StructureShape.new(name: 'ApplicationAssociationSummary')
20
20
  ApplicationAssociationsList = Shapes::ListShape.new(name: 'ApplicationAssociationsList')
21
+ ApplicationConfig = Shapes::StructureShape.new(name: 'ApplicationConfig')
21
22
  ApplicationName = Shapes::StringShape.new(name: 'ApplicationName')
22
23
  ApplicationNamespace = Shapes::StringShape.new(name: 'ApplicationNamespace')
23
24
  ApplicationSourceConfig = Shapes::StructureShape.new(name: 'ApplicationSourceConfig')
@@ -26,8 +27,11 @@ module Aws::AppIntegrationsService
26
27
  ApplicationsList = Shapes::ListShape.new(name: 'ApplicationsList')
27
28
  Arn = Shapes::StringShape.new(name: 'Arn')
28
29
  ArnOrUUID = Shapes::StringShape.new(name: 'ArnOrUUID')
30
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
29
31
  ClientAssociationMetadata = Shapes::MapShape.new(name: 'ClientAssociationMetadata')
30
32
  ClientId = Shapes::StringShape.new(name: 'ClientId')
33
+ ContactHandling = Shapes::StructureShape.new(name: 'ContactHandling')
34
+ ContactHandlingScope = Shapes::StringShape.new(name: 'ContactHandlingScope')
31
35
  CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
32
36
  CreateApplicationResponse = Shapes::StructureShape.new(name: 'CreateApplicationResponse')
33
37
  CreateDataIntegrationAssociationRequest = Shapes::StructureShape.new(name: 'CreateDataIntegrationAssociationRequest')
@@ -75,6 +79,10 @@ module Aws::AppIntegrationsService
75
79
  GetEventIntegrationResponse = Shapes::StructureShape.new(name: 'GetEventIntegrationResponse')
76
80
  IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
77
81
  Identifier = Shapes::StringShape.new(name: 'Identifier')
82
+ IframeConfig = Shapes::StructureShape.new(name: 'IframeConfig')
83
+ IframePermission = Shapes::StringShape.new(name: 'IframePermission')
84
+ IframePermissionList = Shapes::ListShape.new(name: 'IframePermissionList')
85
+ InitializationTimeout = Shapes::IntegerShape.new(name: 'InitializationTimeout')
78
86
  InternalServiceError = Shapes::StructureShape.new(name: 'InternalServiceError')
79
87
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
80
88
  LastExecutionStatus = Shapes::StructureShape.new(name: 'LastExecutionStatus')
@@ -146,6 +154,9 @@ module Aws::AppIntegrationsService
146
154
 
147
155
  ApplicationAssociationsList.member = Shapes::ShapeRef.new(shape: ApplicationAssociationSummary)
148
156
 
157
+ ApplicationConfig.add_member(:contact_handling, Shapes::ShapeRef.new(shape: ContactHandling, location_name: "ContactHandling"))
158
+ ApplicationConfig.struct_class = Types::ApplicationConfig
159
+
149
160
  ApplicationSourceConfig.add_member(:external_url_config, Shapes::ShapeRef.new(shape: ExternalUrlConfig, location_name: "ExternalUrlConfig"))
150
161
  ApplicationSourceConfig.struct_class = Types::ApplicationSourceConfig
151
162
 
@@ -155,6 +166,7 @@ module Aws::AppIntegrationsService
155
166
  ApplicationSummary.add_member(:namespace, Shapes::ShapeRef.new(shape: ApplicationNamespace, location_name: "Namespace"))
156
167
  ApplicationSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
157
168
  ApplicationSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
169
+ ApplicationSummary.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService"))
158
170
  ApplicationSummary.struct_class = Types::ApplicationSummary
159
171
 
160
172
  ApplicationsList.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
@@ -162,6 +174,9 @@ module Aws::AppIntegrationsService
162
174
  ClientAssociationMetadata.key = Shapes::ShapeRef.new(shape: NonBlankString)
163
175
  ClientAssociationMetadata.value = Shapes::ShapeRef.new(shape: NonBlankString)
164
176
 
177
+ ContactHandling.add_member(:scope, Shapes::ShapeRef.new(shape: ContactHandlingScope, location_name: "Scope"))
178
+ ContactHandling.struct_class = Types::ContactHandling
179
+
165
180
  CreateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "Name"))
166
181
  CreateApplicationRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: ApplicationNamespace, required: true, location_name: "Namespace"))
167
182
  CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
@@ -171,6 +186,10 @@ module Aws::AppIntegrationsService
171
186
  CreateApplicationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
172
187
  CreateApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
173
188
  CreateApplicationRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
189
+ CreateApplicationRequest.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService"))
190
+ CreateApplicationRequest.add_member(:initialization_timeout, Shapes::ShapeRef.new(shape: InitializationTimeout, location_name: "InitializationTimeout"))
191
+ CreateApplicationRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
192
+ CreateApplicationRequest.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
174
193
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
175
194
 
176
195
  CreateApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -318,6 +337,10 @@ module Aws::AppIntegrationsService
318
337
  GetApplicationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
319
338
  GetApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
320
339
  GetApplicationResponse.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
340
+ GetApplicationResponse.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService"))
341
+ GetApplicationResponse.add_member(:initialization_timeout, Shapes::ShapeRef.new(shape: InitializationTimeout, location_name: "InitializationTimeout"))
342
+ GetApplicationResponse.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
343
+ GetApplicationResponse.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
321
344
  GetApplicationResponse.struct_class = Types::GetApplicationResponse
322
345
 
323
346
  GetDataIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
@@ -346,6 +369,12 @@ module Aws::AppIntegrationsService
346
369
  GetEventIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
347
370
  GetEventIntegrationResponse.struct_class = Types::GetEventIntegrationResponse
348
371
 
372
+ IframeConfig.add_member(:allow, Shapes::ShapeRef.new(shape: IframePermissionList, location_name: "Allow"))
373
+ IframeConfig.add_member(:sandbox, Shapes::ShapeRef.new(shape: IframePermissionList, location_name: "Sandbox"))
374
+ IframeConfig.struct_class = Types::IframeConfig
375
+
376
+ IframePermissionList.member = Shapes::ShapeRef.new(shape: IframePermission)
377
+
349
378
  InternalServiceError.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
350
379
  InternalServiceError.struct_class = Types::InternalServiceError
351
380
 
@@ -476,6 +505,10 @@ module Aws::AppIntegrationsService
476
505
  UpdateApplicationRequest.add_member(:subscriptions, Shapes::ShapeRef.new(shape: SubscriptionList, deprecated: true, location_name: "Subscriptions", metadata: {"deprecatedMessage" => "Subscriptions has been replaced with Permissions"}))
477
506
  UpdateApplicationRequest.add_member(:publications, Shapes::ShapeRef.new(shape: PublicationList, deprecated: true, location_name: "Publications", metadata: {"deprecatedMessage" => "Publications has been replaced with Permissions"}))
478
507
  UpdateApplicationRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
508
+ UpdateApplicationRequest.add_member(:is_service, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsService", metadata: {"box" => true}))
509
+ UpdateApplicationRequest.add_member(:initialization_timeout, Shapes::ShapeRef.new(shape: InitializationTimeout, location_name: "InitializationTimeout"))
510
+ UpdateApplicationRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
511
+ UpdateApplicationRequest.add_member(:iframe_config, Shapes::ShapeRef.new(shape: IframeConfig, location_name: "IframeConfig"))
479
512
  UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
480
513
 
481
514
  UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
@@ -48,6 +48,20 @@ module Aws::AppIntegrationsService
48
48
  include Aws::Structure
49
49
  end
50
50
 
51
+ # The configuration settings for the application.
52
+ #
53
+ # @!attribute [rw] contact_handling
54
+ # The contact handling configuration for the application.
55
+ # @return [Types::ContactHandling]
56
+ #
57
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ApplicationConfig AWS API Documentation
58
+ #
59
+ class ApplicationConfig < Struct.new(
60
+ :contact_handling)
61
+ SENSITIVE = []
62
+ include Aws::Structure
63
+ end
64
+
51
65
  # The configuration for where the application should be loaded from.
52
66
  #
53
67
  # @!attribute [rw] external_url_config
@@ -88,6 +102,10 @@ module Aws::AppIntegrationsService
88
102
  # The time when the application was last modified.
89
103
  # @return [Time]
90
104
  #
105
+ # @!attribute [rw] is_service
106
+ # Indicates whether the application is a service.
107
+ # @return [Boolean]
108
+ #
91
109
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ApplicationSummary AWS API Documentation
92
110
  #
93
111
  class ApplicationSummary < Struct.new(
@@ -96,7 +114,23 @@ module Aws::AppIntegrationsService
96
114
  :name,
97
115
  :namespace,
98
116
  :created_time,
99
- :last_modified_time)
117
+ :last_modified_time,
118
+ :is_service)
119
+ SENSITIVE = []
120
+ include Aws::Structure
121
+ end
122
+
123
+ # The contact handling configuration for the application.
124
+ #
125
+ # @!attribute [rw] scope
126
+ # Indicates whether the application refreshes for each contact or
127
+ # refreshes only with each new browser session.
128
+ # @return [String]
129
+ #
130
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ContactHandling AWS API Documentation
131
+ #
132
+ class ContactHandling < Struct.new(
133
+ :scope)
100
134
  SENSITIVE = []
101
135
  include Aws::Structure
102
136
  end
@@ -150,6 +184,23 @@ module Aws::AppIntegrationsService
150
184
  # access to.
151
185
  # @return [Array<String>]
152
186
  #
187
+ # @!attribute [rw] is_service
188
+ # Indicates whether the application is a service.
189
+ # @return [Boolean]
190
+ #
191
+ # @!attribute [rw] initialization_timeout
192
+ # The maximum time in milliseconds allowed to establish a connection
193
+ # with the workspace.
194
+ # @return [Integer]
195
+ #
196
+ # @!attribute [rw] application_config
197
+ # The configuration settings for the application.
198
+ # @return [Types::ApplicationConfig]
199
+ #
200
+ # @!attribute [rw] iframe_config
201
+ # The iframe configuration for the application.
202
+ # @return [Types::IframeConfig]
203
+ #
153
204
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/CreateApplicationRequest AWS API Documentation
154
205
  #
155
206
  class CreateApplicationRequest < Struct.new(
@@ -161,7 +212,11 @@ module Aws::AppIntegrationsService
161
212
  :publications,
162
213
  :client_token,
163
214
  :tags,
164
- :permissions)
215
+ :permissions,
216
+ :is_service,
217
+ :initialization_timeout,
218
+ :application_config,
219
+ :iframe_config)
165
220
  SENSITIVE = []
166
221
  include Aws::Structure
167
222
  end
@@ -801,6 +856,23 @@ module Aws::AppIntegrationsService
801
856
  # access to.
802
857
  # @return [Array<String>]
803
858
  #
859
+ # @!attribute [rw] is_service
860
+ # Indicates whether the application is a service.
861
+ # @return [Boolean]
862
+ #
863
+ # @!attribute [rw] initialization_timeout
864
+ # The maximum time in milliseconds allowed to establish a connection
865
+ # with the workspace.
866
+ # @return [Integer]
867
+ #
868
+ # @!attribute [rw] application_config
869
+ # The configuration settings for the application.
870
+ # @return [Types::ApplicationConfig]
871
+ #
872
+ # @!attribute [rw] iframe_config
873
+ # The iframe configuration for the application.
874
+ # @return [Types::IframeConfig]
875
+ #
804
876
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/GetApplicationResponse AWS API Documentation
805
877
  #
806
878
  class GetApplicationResponse < Struct.new(
@@ -815,7 +887,11 @@ module Aws::AppIntegrationsService
815
887
  :created_time,
816
888
  :last_modified_time,
817
889
  :tags,
818
- :permissions)
890
+ :permissions,
891
+ :is_service,
892
+ :initialization_timeout,
893
+ :application_config,
894
+ :iframe_config)
819
895
  SENSITIVE = []
820
896
  include Aws::Structure
821
897
  end
@@ -943,6 +1019,25 @@ module Aws::AppIntegrationsService
943
1019
  include Aws::Structure
944
1020
  end
945
1021
 
1022
+ # The iframe configuration for the application.
1023
+ #
1024
+ # @!attribute [rw] allow
1025
+ # The list of features that are allowed in the iframe.
1026
+ # @return [Array<String>]
1027
+ #
1028
+ # @!attribute [rw] sandbox
1029
+ # The list of sandbox attributes for the iframe.
1030
+ # @return [Array<String>]
1031
+ #
1032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/IframeConfig AWS API Documentation
1033
+ #
1034
+ class IframeConfig < Struct.new(
1035
+ :allow,
1036
+ :sandbox)
1037
+ SENSITIVE = []
1038
+ include Aws::Structure
1039
+ end
1040
+
946
1041
  # Request processing failed due to an error or failure with the service.
947
1042
  #
948
1043
  # @!attribute [rw] message
@@ -1465,6 +1560,23 @@ module Aws::AppIntegrationsService
1465
1560
  # access to.
1466
1561
  # @return [Array<String>]
1467
1562
  #
1563
+ # @!attribute [rw] is_service
1564
+ # Indicates whether the application is a service.
1565
+ # @return [Boolean]
1566
+ #
1567
+ # @!attribute [rw] initialization_timeout
1568
+ # The maximum time in milliseconds allowed to establish a connection
1569
+ # with the workspace.
1570
+ # @return [Integer]
1571
+ #
1572
+ # @!attribute [rw] application_config
1573
+ # The configuration settings for the application.
1574
+ # @return [Types::ApplicationConfig]
1575
+ #
1576
+ # @!attribute [rw] iframe_config
1577
+ # The iframe configuration for the application.
1578
+ # @return [Types::IframeConfig]
1579
+ #
1468
1580
  # @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/UpdateApplicationRequest AWS API Documentation
1469
1581
  #
1470
1582
  class UpdateApplicationRequest < Struct.new(
@@ -1474,7 +1586,11 @@ module Aws::AppIntegrationsService
1474
1586
  :application_source_config,
1475
1587
  :subscriptions,
1476
1588
  :publications,
1477
- :permissions)
1589
+ :permissions,
1590
+ :is_service,
1591
+ :initialization_timeout,
1592
+ :application_config,
1593
+ :iframe_config)
1478
1594
  SENSITIVE = []
1479
1595
  include Aws::Structure
1480
1596
  end
@@ -54,7 +54,7 @@ module Aws::AppIntegrationsService
54
54
  autoload :EndpointProvider, 'aws-sdk-appintegrationsservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appintegrationsservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.52.0'
57
+ GEM_VERSION = '1.53.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -109,7 +109,18 @@ module Aws
109
109
  ],
110
110
  ?client_token: ::String,
111
111
  ?tags: Hash[::String, ::String],
112
- ?permissions: Array[::String]
112
+ ?permissions: Array[::String],
113
+ ?is_service: bool,
114
+ ?initialization_timeout: ::Integer,
115
+ ?application_config: {
116
+ contact_handling: {
117
+ scope: ("CROSS_CONTACTS" | "PER_CONTACT")?
118
+ }?
119
+ },
120
+ ?iframe_config: {
121
+ allow: Array[::String]?,
122
+ sandbox: Array[::String]?
123
+ }
113
124
  ) -> _CreateApplicationResponseSuccess
114
125
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
115
126
 
@@ -234,6 +245,10 @@ module Aws
234
245
  def last_modified_time: () -> ::Time
235
246
  def tags: () -> ::Hash[::String, ::String]
236
247
  def permissions: () -> ::Array[::String]
248
+ def is_service: () -> bool
249
+ def initialization_timeout: () -> ::Integer
250
+ def application_config: () -> Types::ApplicationConfig
251
+ def iframe_config: () -> Types::IframeConfig
237
252
  end
238
253
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#get_application-instance_method
239
254
  def get_application: (
@@ -407,7 +422,18 @@ module Aws
407
422
  description: ::String?
408
423
  },
409
424
  ],
410
- ?permissions: Array[::String]
425
+ ?permissions: Array[::String],
426
+ ?is_service: bool,
427
+ ?initialization_timeout: ::Integer,
428
+ ?application_config: {
429
+ contact_handling: {
430
+ scope: ("CROSS_CONTACTS" | "PER_CONTACT")?
431
+ }?
432
+ },
433
+ ?iframe_config: {
434
+ allow: Array[::String]?,
435
+ sandbox: Array[::String]?
436
+ }
411
437
  ) -> _UpdateApplicationResponseSuccess
412
438
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
413
439
 
data/sig/types.rbs CHANGED
@@ -20,6 +20,11 @@ module Aws::AppIntegrationsService
20
20
  SENSITIVE: []
21
21
  end
22
22
 
23
+ class ApplicationConfig
24
+ attr_accessor contact_handling: Types::ContactHandling
25
+ SENSITIVE: []
26
+ end
27
+
23
28
  class ApplicationSourceConfig
24
29
  attr_accessor external_url_config: Types::ExternalUrlConfig
25
30
  SENSITIVE: []
@@ -32,6 +37,12 @@ module Aws::AppIntegrationsService
32
37
  attr_accessor namespace: ::String
33
38
  attr_accessor created_time: ::Time
34
39
  attr_accessor last_modified_time: ::Time
40
+ attr_accessor is_service: bool
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class ContactHandling
45
+ attr_accessor scope: ("CROSS_CONTACTS" | "PER_CONTACT")
35
46
  SENSITIVE: []
36
47
  end
37
48
 
@@ -45,6 +56,10 @@ module Aws::AppIntegrationsService
45
56
  attr_accessor client_token: ::String
46
57
  attr_accessor tags: ::Hash[::String, ::String]
47
58
  attr_accessor permissions: ::Array[::String]
59
+ attr_accessor is_service: bool
60
+ attr_accessor initialization_timeout: ::Integer
61
+ attr_accessor application_config: Types::ApplicationConfig
62
+ attr_accessor iframe_config: Types::IframeConfig
48
63
  SENSITIVE: []
49
64
  end
50
65
 
@@ -222,6 +237,10 @@ module Aws::AppIntegrationsService
222
237
  attr_accessor last_modified_time: ::Time
223
238
  attr_accessor tags: ::Hash[::String, ::String]
224
239
  attr_accessor permissions: ::Array[::String]
240
+ attr_accessor is_service: bool
241
+ attr_accessor initialization_timeout: ::Integer
242
+ attr_accessor application_config: Types::ApplicationConfig
243
+ attr_accessor iframe_config: Types::IframeConfig
225
244
  SENSITIVE: []
226
245
  end
227
246
 
@@ -259,6 +278,12 @@ module Aws::AppIntegrationsService
259
278
  SENSITIVE: []
260
279
  end
261
280
 
281
+ class IframeConfig
282
+ attr_accessor allow: ::Array[::String]
283
+ attr_accessor sandbox: ::Array[::String]
284
+ SENSITIVE: []
285
+ end
286
+
262
287
  class InternalServiceError
263
288
  attr_accessor message: ::String
264
289
  SENSITIVE: []
@@ -432,6 +457,10 @@ module Aws::AppIntegrationsService
432
457
  attr_accessor subscriptions: ::Array[Types::Subscription]
433
458
  attr_accessor publications: ::Array[Types::Publication]
434
459
  attr_accessor permissions: ::Array[::String]
460
+ attr_accessor is_service: bool
461
+ attr_accessor initialization_timeout: ::Integer
462
+ attr_accessor application_config: Types::ApplicationConfig
463
+ attr_accessor iframe_config: Types::IframeConfig
435
464
  SENSITIVE: []
436
465
  end
437
466
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appintegrationsservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services