cdk-docker-image-deployment 0.0.76 → 0.0.78
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.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +18 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +24 -0
- package/node_modules/aws-sdk/apis/auditmanager-2017-07-25.min.json +41 -27
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.examples.json → chime-sdk-voice-2022-08-03.examples.json} +0 -0
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +2734 -0
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +46 -0
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +774 -409
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +185 -158
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +3 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +505 -501
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.min.json +923 -0
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/metadata.json +9 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +321 -138
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +263 -263
- package/node_modules/aws-sdk/apis/servicecatalog-2015-12-10.min.json +183 -115
- package/node_modules/aws-sdk/apis/ssm-sap-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.min.json → ssm-sap-2018-05-10.min.json} +2 -2
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.paginators.json → ssm-sap-2018-05-10.paginators.json} +0 -0
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +17 -5
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +2 -0
- package/node_modules/aws-sdk/clients/appflow.d.ts +30 -5
- package/node_modules/aws-sdk/clients/auditmanager.d.ts +50 -12
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +1401 -0
- package/node_modules/aws-sdk/clients/chimesdkvoice.js +18 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +300 -12
- package/node_modules/aws-sdk/clients/connect.d.ts +31 -1
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +17 -13
- package/node_modules/aws-sdk/clients/glue.d.ts +9 -3
- package/node_modules/aws-sdk/clients/iotroborunner.d.ts +534 -0
- package/node_modules/aws-sdk/clients/iotroborunner.js +18 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +230 -13
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +5 -1
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +141 -29
- package/node_modules/aws-sdk/clients/ssmsap.d.ts +31 -31
- package/node_modules/aws-sdk/clients/ssmsap.js +2 -2
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +67 -52
- package/node_modules/aws-sdk/clients/transfer.d.ts +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +94 -20
- package/node_modules/aws-sdk/dist/aws-sdk.js +1155 -683
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +87 -86
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +3 -3
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['chimesdkvoice'] = {};
|
|
7
|
+
AWS.ChimeSDKVoice = Service.defineService('chimesdkvoice', ['2022-08-03']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['chimesdkvoice'], '2022-08-03', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/chime-sdk-voice-2022-08-03.min.json');
|
|
11
|
+
model.paginators = require('../apis/chime-sdk-voice-2022-08-03.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.ChimeSDKVoice;
|
|
@@ -21,6 +21,14 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
|
21
21
|
* Associates an alias (also known as a CNAME or an alternate domain name) with a CloudFront distribution. With this operation you can move an alias that’s already in use on a CloudFront distribution to a different distribution in one step. This prevents the downtime that could occur if you first remove the alias from one distribution and then separately add the alias to another distribution. To use this operation to associate an alias with a distribution, you provide the alias and the ID of the target distribution for the alias. For more information, including how to set up the target distribution, prerequisites that you must complete, and other restrictions, see Moving an alternate domain name to a different distribution in the Amazon CloudFront Developer Guide.
|
|
22
22
|
*/
|
|
23
23
|
associateAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
24
|
+
/**
|
|
25
|
+
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution’s configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution.
|
|
26
|
+
*/
|
|
27
|
+
copyDistribution(params: CloudFront.Types.CopyDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CopyDistributionResult) => void): Request<CloudFront.Types.CopyDistributionResult, AWSError>;
|
|
28
|
+
/**
|
|
29
|
+
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution’s configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution.
|
|
30
|
+
*/
|
|
31
|
+
copyDistribution(callback?: (err: AWSError, data: CloudFront.Types.CopyDistributionResult) => void): Request<CloudFront.Types.CopyDistributionResult, AWSError>;
|
|
24
32
|
/**
|
|
25
33
|
* Creates a cache policy. After you create a cache policy, you can attach it to one or more cache behaviors. When it’s attached to a cache behavior, the cache policy determines the following: The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer. The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache. The headers, cookies, and query strings that are included in the cache key are automatically included in requests that CloudFront sends to the origin. CloudFront sends a request when it can’t find an object in its cache that matches the request’s cache key. If you want to send values to the origin but not include them in the cache key, use OriginRequestPolicy. For more information about cache policies, see Controlling the cache key in the Amazon CloudFront Developer Guide.
|
|
26
34
|
*/
|
|
@@ -38,11 +46,19 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
|
38
46
|
*/
|
|
39
47
|
createCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult, AWSError>;
|
|
40
48
|
/**
|
|
41
|
-
* Creates a
|
|
49
|
+
* Creates a continuous deployment policy that distributes traffic for a custom domain name to two different CloudFront distributions. To use a continuous deployment policy, first use CopyDistribution to create a staging distribution, then use UpdateDistribution to modify the staging distribution’s configuration. After you create and update a staging distribution, you can use a continuous deployment policy to incrementally move traffic to the staging distribution. This workflow enables you to test changes to a distribution’s configuration before moving all of your domain’s production traffic to the new configuration.
|
|
50
|
+
*/
|
|
51
|
+
createContinuousDeploymentPolicy(params: CloudFront.Types.CreateContinuousDeploymentPolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateContinuousDeploymentPolicyResult) => void): Request<CloudFront.Types.CreateContinuousDeploymentPolicyResult, AWSError>;
|
|
52
|
+
/**
|
|
53
|
+
* Creates a continuous deployment policy that distributes traffic for a custom domain name to two different CloudFront distributions. To use a continuous deployment policy, first use CopyDistribution to create a staging distribution, then use UpdateDistribution to modify the staging distribution’s configuration. After you create and update a staging distribution, you can use a continuous deployment policy to incrementally move traffic to the staging distribution. This workflow enables you to test changes to a distribution’s configuration before moving all of your domain’s production traffic to the new configuration.
|
|
54
|
+
*/
|
|
55
|
+
createContinuousDeploymentPolicy(callback?: (err: AWSError, data: CloudFront.Types.CreateContinuousDeploymentPolicyResult) => void): Request<CloudFront.Types.CreateContinuousDeploymentPolicyResult, AWSError>;
|
|
56
|
+
/**
|
|
57
|
+
* Creates a CloudFront distribution.
|
|
42
58
|
*/
|
|
43
59
|
createDistribution(params: CloudFront.Types.CreateDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>;
|
|
44
60
|
/**
|
|
45
|
-
* Creates a
|
|
61
|
+
* Creates a CloudFront distribution.
|
|
46
62
|
*/
|
|
47
63
|
createDistribution(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>;
|
|
48
64
|
/**
|
|
@@ -173,6 +189,14 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
|
173
189
|
* Delete an origin access identity.
|
|
174
190
|
*/
|
|
175
191
|
deleteCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
192
|
+
/**
|
|
193
|
+
* Deletes a continuous deployment policy. You cannot delete a continuous deployment policy that’s attached to a primary distribution. First update your distribution to remove the continuous deployment policy, then you can delete the policy.
|
|
194
|
+
*/
|
|
195
|
+
deleteContinuousDeploymentPolicy(params: CloudFront.Types.DeleteContinuousDeploymentPolicyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
196
|
+
/**
|
|
197
|
+
* Deletes a continuous deployment policy. You cannot delete a continuous deployment policy that’s attached to a primary distribution. First update your distribution to remove the continuous deployment policy, then you can delete the policy.
|
|
198
|
+
*/
|
|
199
|
+
deleteContinuousDeploymentPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
176
200
|
/**
|
|
177
201
|
* Delete a distribution.
|
|
178
202
|
*/
|
|
@@ -309,6 +333,22 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
|
309
333
|
* Get the configuration information about an origin access identity.
|
|
310
334
|
*/
|
|
311
335
|
getCloudFrontOriginAccessIdentityConfig(callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult, AWSError>;
|
|
336
|
+
/**
|
|
337
|
+
* Gets a continuous deployment policy, including metadata (the policy’s identifier and the date and time when the policy was last modified).
|
|
338
|
+
*/
|
|
339
|
+
getContinuousDeploymentPolicy(params: CloudFront.Types.GetContinuousDeploymentPolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.GetContinuousDeploymentPolicyResult) => void): Request<CloudFront.Types.GetContinuousDeploymentPolicyResult, AWSError>;
|
|
340
|
+
/**
|
|
341
|
+
* Gets a continuous deployment policy, including metadata (the policy’s identifier and the date and time when the policy was last modified).
|
|
342
|
+
*/
|
|
343
|
+
getContinuousDeploymentPolicy(callback?: (err: AWSError, data: CloudFront.Types.GetContinuousDeploymentPolicyResult) => void): Request<CloudFront.Types.GetContinuousDeploymentPolicyResult, AWSError>;
|
|
344
|
+
/**
|
|
345
|
+
* Gets configuration information about a continuous deployment policy.
|
|
346
|
+
*/
|
|
347
|
+
getContinuousDeploymentPolicyConfig(params: CloudFront.Types.GetContinuousDeploymentPolicyConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetContinuousDeploymentPolicyConfigResult) => void): Request<CloudFront.Types.GetContinuousDeploymentPolicyConfigResult, AWSError>;
|
|
348
|
+
/**
|
|
349
|
+
* Gets configuration information about a continuous deployment policy.
|
|
350
|
+
*/
|
|
351
|
+
getContinuousDeploymentPolicyConfig(callback?: (err: AWSError, data: CloudFront.Types.GetContinuousDeploymentPolicyConfigResult) => void): Request<CloudFront.Types.GetContinuousDeploymentPolicyConfigResult, AWSError>;
|
|
312
352
|
/**
|
|
313
353
|
* Get the information about a distribution.
|
|
314
354
|
*/
|
|
@@ -509,6 +549,14 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
|
509
549
|
* Gets a list of aliases (also called CNAMEs or alternate domain names) that conflict or overlap with the provided alias, and the associated CloudFront distributions and Amazon Web Services accounts for each conflicting alias. In the returned list, the distribution and account IDs are partially hidden, which allows you to identify the distributions and accounts that you own, but helps to protect the information of ones that you don’t own. Use this operation to find aliases that are in use in CloudFront that conflict or overlap with the provided alias. For example, if you provide www.example.com as input, the returned list can include www.example.com and the overlapping wildcard alternate domain name (*.example.com), if they exist. If you provide *.example.com as input, the returned list can include *.example.com and any alternate domain names covered by that wildcard (for example, www.example.com, test.example.com, dev.example.com, and so on), if they exist. To list conflicting aliases, you provide the alias to search and the ID of a distribution in your account that has an attached SSL/TLS certificate that includes the provided alias. For more information, including how to set up the distribution and certificate, see Moving an alternate domain name to a different distribution in the Amazon CloudFront Developer Guide. You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.
|
|
510
550
|
*/
|
|
511
551
|
listConflictingAliases(callback?: (err: AWSError, data: CloudFront.Types.ListConflictingAliasesResult) => void): Request<CloudFront.Types.ListConflictingAliasesResult, AWSError>;
|
|
552
|
+
/**
|
|
553
|
+
* Gets a list of the continuous deployment policies in your Amazon Web Services account. You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.
|
|
554
|
+
*/
|
|
555
|
+
listContinuousDeploymentPolicies(params: CloudFront.Types.ListContinuousDeploymentPoliciesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListContinuousDeploymentPoliciesResult) => void): Request<CloudFront.Types.ListContinuousDeploymentPoliciesResult, AWSError>;
|
|
556
|
+
/**
|
|
557
|
+
* Gets a list of the continuous deployment policies in your Amazon Web Services account. You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.
|
|
558
|
+
*/
|
|
559
|
+
listContinuousDeploymentPolicies(callback?: (err: AWSError, data: CloudFront.Types.ListContinuousDeploymentPoliciesResult) => void): Request<CloudFront.Types.ListContinuousDeploymentPoliciesResult, AWSError>;
|
|
512
560
|
/**
|
|
513
561
|
* List CloudFront distributions.
|
|
514
562
|
*/
|
|
@@ -710,11 +758,19 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
|
710
758
|
*/
|
|
711
759
|
updateCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult, AWSError>;
|
|
712
760
|
/**
|
|
713
|
-
* Updates
|
|
761
|
+
* Updates a continuous deployment policy. You can update a continuous deployment policy to enable or disable it, to change the percentage of traffic that it sends to the staging distribution, or to change the staging distribution that it sends traffic to. When you update a continuous deployment policy configuration, all the fields are updated with the values that are provided in the request. You cannot update some fields independent of others. To update a continuous deployment policy configuration: Use GetContinuousDeploymentPolicyConfig to get the current configuration. Locally modify the fields in the continuous deployment policy configuration that you want to update. Use UpdateContinuousDeploymentPolicy, providing the entire continuous deployment policy configuration, including the fields that you modified and those that you didn’t.
|
|
762
|
+
*/
|
|
763
|
+
updateContinuousDeploymentPolicy(params: CloudFront.Types.UpdateContinuousDeploymentPolicyRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateContinuousDeploymentPolicyResult) => void): Request<CloudFront.Types.UpdateContinuousDeploymentPolicyResult, AWSError>;
|
|
764
|
+
/**
|
|
765
|
+
* Updates a continuous deployment policy. You can update a continuous deployment policy to enable or disable it, to change the percentage of traffic that it sends to the staging distribution, or to change the staging distribution that it sends traffic to. When you update a continuous deployment policy configuration, all the fields are updated with the values that are provided in the request. You cannot update some fields independent of others. To update a continuous deployment policy configuration: Use GetContinuousDeploymentPolicyConfig to get the current configuration. Locally modify the fields in the continuous deployment policy configuration that you want to update. Use UpdateContinuousDeploymentPolicy, providing the entire continuous deployment policy configuration, including the fields that you modified and those that you didn’t.
|
|
766
|
+
*/
|
|
767
|
+
updateContinuousDeploymentPolicy(callback?: (err: AWSError, data: CloudFront.Types.UpdateContinuousDeploymentPolicyResult) => void): Request<CloudFront.Types.UpdateContinuousDeploymentPolicyResult, AWSError>;
|
|
768
|
+
/**
|
|
769
|
+
* Updates the configuration for a CloudFront distribution. The update process includes getting the current distribution configuration, updating it to make your changes, and then submitting an UpdateDistribution request to make the updates. To update a web distribution using the CloudFront API Use GetDistributionConfig to get the current configuration, including the version identifier (ETag). Update the distribution configuration that was returned in the response. Note the following important requirements and restrictions: You must rename the ETag field to IfMatch, leaving the value unchanged. (Set the value of IfMatch to the value of ETag, then remove the ETag field.) You can’t change the value of CallerReference. Submit an UpdateDistribution request, providing the distribution configuration. The new configuration replaces the existing configuration. The values that you specify in an UpdateDistribution request are not merged into your existing configuration. Make sure to include all fields: the ones that you modified and also the ones that you didn’t.
|
|
714
770
|
*/
|
|
715
771
|
updateDistribution(params: CloudFront.Types.UpdateDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>;
|
|
716
772
|
/**
|
|
717
|
-
* Updates the configuration for a
|
|
773
|
+
* Updates the configuration for a CloudFront distribution. The update process includes getting the current distribution configuration, updating it to make your changes, and then submitting an UpdateDistribution request to make the updates. To update a web distribution using the CloudFront API Use GetDistributionConfig to get the current configuration, including the version identifier (ETag). Update the distribution configuration that was returned in the response. Note the following important requirements and restrictions: You must rename the ETag field to IfMatch, leaving the value unchanged. (Set the value of IfMatch to the value of ETag, then remove the ETag field.) You can’t change the value of CallerReference. Submit an UpdateDistribution request, providing the distribution configuration. The new configuration replaces the existing configuration. The values that you specify in an UpdateDistribution request are not merged into your existing configuration. Make sure to include all fields: the ones that you modified and also the ones that you didn’t.
|
|
718
774
|
*/
|
|
719
775
|
updateDistribution(callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>;
|
|
720
776
|
/**
|
|
@@ -1230,6 +1286,74 @@ declare namespace CloudFront {
|
|
|
1230
1286
|
*/
|
|
1231
1287
|
Items?: ContentTypeProfileList;
|
|
1232
1288
|
}
|
|
1289
|
+
export interface ContinuousDeploymentPolicy {
|
|
1290
|
+
/**
|
|
1291
|
+
* The identifier of the continuous deployment policy.
|
|
1292
|
+
*/
|
|
1293
|
+
Id: string;
|
|
1294
|
+
/**
|
|
1295
|
+
* The date and time the continuous deployment policy was last modified.
|
|
1296
|
+
*/
|
|
1297
|
+
LastModifiedTime: timestamp;
|
|
1298
|
+
ContinuousDeploymentPolicyConfig: ContinuousDeploymentPolicyConfig;
|
|
1299
|
+
}
|
|
1300
|
+
export interface ContinuousDeploymentPolicyConfig {
|
|
1301
|
+
/**
|
|
1302
|
+
* The CloudFront domain name of the staging distribution. For example: d111111abcdef8.cloudfront.net.
|
|
1303
|
+
*/
|
|
1304
|
+
StagingDistributionDnsNames: StagingDistributionDnsNames;
|
|
1305
|
+
/**
|
|
1306
|
+
* A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is true, this policy is enabled and in effect. When this value is false, this policy is not enabled and has no effect.
|
|
1307
|
+
*/
|
|
1308
|
+
Enabled: boolean;
|
|
1309
|
+
/**
|
|
1310
|
+
* Contains the parameters for routing production traffic from your primary to staging distributions.
|
|
1311
|
+
*/
|
|
1312
|
+
TrafficConfig?: TrafficConfig;
|
|
1313
|
+
}
|
|
1314
|
+
export interface ContinuousDeploymentPolicyList {
|
|
1315
|
+
/**
|
|
1316
|
+
* Indicates the next page of continuous deployment policies. To get the next page of the list, use this value in the Marker field of your request.
|
|
1317
|
+
*/
|
|
1318
|
+
NextMarker?: string;
|
|
1319
|
+
/**
|
|
1320
|
+
* The maximum number of continuous deployment policies that were specified in your request.
|
|
1321
|
+
*/
|
|
1322
|
+
MaxItems: integer;
|
|
1323
|
+
/**
|
|
1324
|
+
* The total number of continuous deployment policies in your Amazon Web Services account, regardless of the MaxItems value.
|
|
1325
|
+
*/
|
|
1326
|
+
Quantity: integer;
|
|
1327
|
+
/**
|
|
1328
|
+
* A list of continuous deployment policy items.
|
|
1329
|
+
*/
|
|
1330
|
+
Items?: ContinuousDeploymentPolicySummaryList;
|
|
1331
|
+
}
|
|
1332
|
+
export interface ContinuousDeploymentPolicySummary {
|
|
1333
|
+
/**
|
|
1334
|
+
* The continuous deployment policy.
|
|
1335
|
+
*/
|
|
1336
|
+
ContinuousDeploymentPolicy: ContinuousDeploymentPolicy;
|
|
1337
|
+
}
|
|
1338
|
+
export type ContinuousDeploymentPolicySummaryList = ContinuousDeploymentPolicySummary[];
|
|
1339
|
+
export type ContinuousDeploymentPolicyType = "SingleWeight"|"SingleHeader"|string;
|
|
1340
|
+
export interface ContinuousDeploymentSingleHeaderConfig {
|
|
1341
|
+
/**
|
|
1342
|
+
* The request header name that you want CloudFront to send to your staging distribution.
|
|
1343
|
+
*/
|
|
1344
|
+
Header: string;
|
|
1345
|
+
/**
|
|
1346
|
+
* The request header value.
|
|
1347
|
+
*/
|
|
1348
|
+
Value: string;
|
|
1349
|
+
}
|
|
1350
|
+
export interface ContinuousDeploymentSingleWeightConfig {
|
|
1351
|
+
/**
|
|
1352
|
+
* The percentage of traffic to send to the staging distribution, expressed as a decimal number between 0 and 1.
|
|
1353
|
+
*/
|
|
1354
|
+
Weight: float;
|
|
1355
|
+
SessionStickinessConfig?: SessionStickinessConfig;
|
|
1356
|
+
}
|
|
1233
1357
|
export type CookieNameList = string[];
|
|
1234
1358
|
export interface CookieNames {
|
|
1235
1359
|
/**
|
|
@@ -1251,6 +1375,35 @@ declare namespace CloudFront {
|
|
|
1251
1375
|
*/
|
|
1252
1376
|
WhitelistedNames?: CookieNames;
|
|
1253
1377
|
}
|
|
1378
|
+
export interface CopyDistributionRequest {
|
|
1379
|
+
/**
|
|
1380
|
+
* The identifier of the primary distribution whose configuration you are copying. To get a distribution ID, use ListDistributions.
|
|
1381
|
+
*/
|
|
1382
|
+
PrimaryDistributionId: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* The type of distribution that your primary distribution will be copied to. The only valid value is True, indicating that you are copying to a staging distribution.
|
|
1385
|
+
*/
|
|
1386
|
+
Staging?: boolean;
|
|
1387
|
+
/**
|
|
1388
|
+
* The version identifier of the primary distribution whose configuration you are copying. This is the ETag value returned in the response to GetDistribution and GetDistributionConfig.
|
|
1389
|
+
*/
|
|
1390
|
+
IfMatch?: string;
|
|
1391
|
+
/**
|
|
1392
|
+
* A value that uniquely identifies a request to create a resource. This helps to prevent CloudFront from creating a duplicate resource if you accidentally resubmit an identical request.
|
|
1393
|
+
*/
|
|
1394
|
+
CallerReference: string;
|
|
1395
|
+
}
|
|
1396
|
+
export interface CopyDistributionResult {
|
|
1397
|
+
Distribution?: Distribution;
|
|
1398
|
+
/**
|
|
1399
|
+
* The URL of the staging distribution.
|
|
1400
|
+
*/
|
|
1401
|
+
Location?: string;
|
|
1402
|
+
/**
|
|
1403
|
+
* The version identifier for the current version of the staging distribution.
|
|
1404
|
+
*/
|
|
1405
|
+
ETag?: string;
|
|
1406
|
+
}
|
|
1254
1407
|
export interface CreateCachePolicyRequest {
|
|
1255
1408
|
/**
|
|
1256
1409
|
* A cache policy configuration.
|
|
@@ -1291,6 +1444,26 @@ declare namespace CloudFront {
|
|
|
1291
1444
|
*/
|
|
1292
1445
|
ETag?: string;
|
|
1293
1446
|
}
|
|
1447
|
+
export interface CreateContinuousDeploymentPolicyRequest {
|
|
1448
|
+
/**
|
|
1449
|
+
* Contains the configuration for a continuous deployment policy.
|
|
1450
|
+
*/
|
|
1451
|
+
ContinuousDeploymentPolicyConfig: ContinuousDeploymentPolicyConfig;
|
|
1452
|
+
}
|
|
1453
|
+
export interface CreateContinuousDeploymentPolicyResult {
|
|
1454
|
+
/**
|
|
1455
|
+
* A continuous deployment policy.
|
|
1456
|
+
*/
|
|
1457
|
+
ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
|
|
1458
|
+
/**
|
|
1459
|
+
* The location of the continuous deployment policy.
|
|
1460
|
+
*/
|
|
1461
|
+
Location?: string;
|
|
1462
|
+
/**
|
|
1463
|
+
* The version identifier for the current version of the continuous deployment policy.
|
|
1464
|
+
*/
|
|
1465
|
+
ETag?: string;
|
|
1466
|
+
}
|
|
1294
1467
|
export interface CreateDistributionRequest {
|
|
1295
1468
|
/**
|
|
1296
1469
|
* The distribution's configuration information.
|
|
@@ -1755,6 +1928,16 @@ declare namespace CloudFront {
|
|
|
1755
1928
|
*/
|
|
1756
1929
|
IfMatch?: string;
|
|
1757
1930
|
}
|
|
1931
|
+
export interface DeleteContinuousDeploymentPolicyRequest {
|
|
1932
|
+
/**
|
|
1933
|
+
* The identifier of the continuous deployment policy that you are deleting.
|
|
1934
|
+
*/
|
|
1935
|
+
Id: string;
|
|
1936
|
+
/**
|
|
1937
|
+
* The current version (ETag value) of the continuous deployment policy that you are deleting.
|
|
1938
|
+
*/
|
|
1939
|
+
IfMatch?: string;
|
|
1940
|
+
}
|
|
1758
1941
|
export interface DeleteDistributionRequest {
|
|
1759
1942
|
/**
|
|
1760
1943
|
* The distribution ID.
|
|
@@ -1895,19 +2078,19 @@ declare namespace CloudFront {
|
|
|
1895
2078
|
}
|
|
1896
2079
|
export interface Distribution {
|
|
1897
2080
|
/**
|
|
1898
|
-
* The identifier
|
|
2081
|
+
* The distribution’s identifier. For example: E1U5RQF7T870K0.
|
|
1899
2082
|
*/
|
|
1900
2083
|
Id: string;
|
|
1901
2084
|
/**
|
|
1902
|
-
* The
|
|
2085
|
+
* The distribution’s Amazon Resource Name (ARN).
|
|
1903
2086
|
*/
|
|
1904
2087
|
ARN: string;
|
|
1905
2088
|
/**
|
|
1906
|
-
*
|
|
2089
|
+
* The distribution’s status. When the status is Deployed, the distribution’s information is fully propagated to all CloudFront edge locations.
|
|
1907
2090
|
*/
|
|
1908
2091
|
Status: string;
|
|
1909
2092
|
/**
|
|
1910
|
-
* The date and time the distribution was last modified.
|
|
2093
|
+
* The date and time when the distribution was last modified.
|
|
1911
2094
|
*/
|
|
1912
2095
|
LastModifiedTime: timestamp;
|
|
1913
2096
|
/**
|
|
@@ -1915,7 +2098,7 @@ declare namespace CloudFront {
|
|
|
1915
2098
|
*/
|
|
1916
2099
|
InProgressInvalidationBatches: integer;
|
|
1917
2100
|
/**
|
|
1918
|
-
* The domain name
|
|
2101
|
+
* The distribution’s CloudFront domain name. For example: d111111abcdef8.cloudfront.net.
|
|
1919
2102
|
*/
|
|
1920
2103
|
DomainName: string;
|
|
1921
2104
|
/**
|
|
@@ -1927,7 +2110,7 @@ declare namespace CloudFront {
|
|
|
1927
2110
|
*/
|
|
1928
2111
|
ActiveTrustedKeyGroups?: ActiveTrustedKeyGroups;
|
|
1929
2112
|
/**
|
|
1930
|
-
* The
|
|
2113
|
+
* The distribution’s configuration.
|
|
1931
2114
|
*/
|
|
1932
2115
|
DistributionConfig: DistributionConfig;
|
|
1933
2116
|
/**
|
|
@@ -1945,7 +2128,7 @@ declare namespace CloudFront {
|
|
|
1945
2128
|
*/
|
|
1946
2129
|
Aliases?: Aliases;
|
|
1947
2130
|
/**
|
|
1948
|
-
* The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (
|
|
2131
|
+
* The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (https://www.example.com) instead of an object in your distribution (https://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution. Specify only the object name, for example, index.html. Don't add a / before the object name. If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element. To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element. To replace the default root object, update the distribution configuration and specify the new object. For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.
|
|
1949
2132
|
*/
|
|
1950
2133
|
DefaultRootObject?: string;
|
|
1951
2134
|
/**
|
|
@@ -2538,6 +2721,35 @@ declare namespace CloudFront {
|
|
|
2538
2721
|
*/
|
|
2539
2722
|
ETag?: string;
|
|
2540
2723
|
}
|
|
2724
|
+
export interface GetContinuousDeploymentPolicyConfigRequest {
|
|
2725
|
+
/**
|
|
2726
|
+
* The identifier of the continuous deployment policy whose configuration you are getting.
|
|
2727
|
+
*/
|
|
2728
|
+
Id: string;
|
|
2729
|
+
}
|
|
2730
|
+
export interface GetContinuousDeploymentPolicyConfigResult {
|
|
2731
|
+
ContinuousDeploymentPolicyConfig?: ContinuousDeploymentPolicyConfig;
|
|
2732
|
+
/**
|
|
2733
|
+
* The version identifier for the current version of the continuous deployment policy.
|
|
2734
|
+
*/
|
|
2735
|
+
ETag?: string;
|
|
2736
|
+
}
|
|
2737
|
+
export interface GetContinuousDeploymentPolicyRequest {
|
|
2738
|
+
/**
|
|
2739
|
+
* The identifier of the continuous deployment policy that you are getting.
|
|
2740
|
+
*/
|
|
2741
|
+
Id: string;
|
|
2742
|
+
}
|
|
2743
|
+
export interface GetContinuousDeploymentPolicyResult {
|
|
2744
|
+
/**
|
|
2745
|
+
* A continuous deployment policy.
|
|
2746
|
+
*/
|
|
2747
|
+
ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
|
|
2748
|
+
/**
|
|
2749
|
+
* The version identifier for the current version of the continuous deployment policy.
|
|
2750
|
+
*/
|
|
2751
|
+
ETag?: string;
|
|
2752
|
+
}
|
|
2541
2753
|
export interface GetDistributionConfigRequest {
|
|
2542
2754
|
/**
|
|
2543
2755
|
* The distribution's ID. If the ID is empty, an empty distribution configuration is returned.
|
|
@@ -3145,6 +3357,22 @@ declare namespace CloudFront {
|
|
|
3145
3357
|
*/
|
|
3146
3358
|
ConflictingAliasesList?: ConflictingAliasesList;
|
|
3147
3359
|
}
|
|
3360
|
+
export interface ListContinuousDeploymentPoliciesRequest {
|
|
3361
|
+
/**
|
|
3362
|
+
* Use this field when paginating results to indicate where to begin in your list of continuous deployment policies. The response includes policies in the list that occur after the marker. To get the next page of the list, set this field’s value to the value of NextMarker from the current page’s response.
|
|
3363
|
+
*/
|
|
3364
|
+
Marker?: string;
|
|
3365
|
+
/**
|
|
3366
|
+
* The maximum number of continuous deployment policies that you want returned in the response.
|
|
3367
|
+
*/
|
|
3368
|
+
MaxItems?: string;
|
|
3369
|
+
}
|
|
3370
|
+
export interface ListContinuousDeploymentPoliciesResult {
|
|
3371
|
+
/**
|
|
3372
|
+
* A list of continuous deployment policies.
|
|
3373
|
+
*/
|
|
3374
|
+
ContinuousDeploymentPolicyList?: ContinuousDeploymentPolicyList;
|
|
3375
|
+
}
|
|
3148
3376
|
export interface ListDistributionsByCachePolicyIdRequest {
|
|
3149
3377
|
/**
|
|
3150
3378
|
* Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field’s value to the value of NextMarker from the current page’s response.
|
|
@@ -3568,7 +3796,7 @@ declare namespace CloudFront {
|
|
|
3568
3796
|
/**
|
|
3569
3797
|
* A description of the origin access control.
|
|
3570
3798
|
*/
|
|
3571
|
-
Description
|
|
3799
|
+
Description?: string;
|
|
3572
3800
|
/**
|
|
3573
3801
|
* The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.
|
|
3574
3802
|
*/
|
|
@@ -4352,6 +4580,16 @@ declare namespace CloudFront {
|
|
|
4352
4580
|
}
|
|
4353
4581
|
export type SSLSupportMethod = "sni-only"|"vip"|"static-ip"|string;
|
|
4354
4582
|
export type SamplingRate = number;
|
|
4583
|
+
export interface SessionStickinessConfig {
|
|
4584
|
+
/**
|
|
4585
|
+
* The amount of time after which you want sessions to cease if no requests are received.
Allowed values are 300–3600 seconds (5–60 minutes). The value must be less than or equal to MaximumTTL.
|
|
4586
|
+
*/
|
|
4587
|
+
IdleTTL: integer;
|
|
4588
|
+
/**
|
|
4589
|
+
* The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes). The value must be less than or equal to IdleTTL.
|
|
4590
|
+
*/
|
|
4591
|
+
MaximumTTL: integer;
|
|
4592
|
+
}
|
|
4355
4593
|
export interface _Signer {
|
|
4356
4594
|
/**
|
|
4357
4595
|
* An Amazon Web Services account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the Amazon Web Services account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.
|
|
@@ -4365,6 +4603,17 @@ declare namespace CloudFront {
|
|
|
4365
4603
|
export type SignerList = _Signer[];
|
|
4366
4604
|
export type SslProtocol = "SSLv3"|"TLSv1"|"TLSv1.1"|"TLSv1.2"|string;
|
|
4367
4605
|
export type SslProtocolsList = SslProtocol[];
|
|
4606
|
+
export type StagingDistributionDnsNameList = string[];
|
|
4607
|
+
export interface StagingDistributionDnsNames {
|
|
4608
|
+
/**
|
|
4609
|
+
* The number of CloudFront domain names in your staging distribution.
|
|
4610
|
+
*/
|
|
4611
|
+
Quantity: integer;
|
|
4612
|
+
/**
|
|
4613
|
+
* The CloudFront domain name of the staging distribution.
|
|
4614
|
+
*/
|
|
4615
|
+
Items?: StagingDistributionDnsNameList;
|
|
4616
|
+
}
|
|
4368
4617
|
export type StatusCodeList = integer[];
|
|
4369
4618
|
export interface StatusCodes {
|
|
4370
4619
|
/**
|
|
@@ -4619,6 +4868,20 @@ declare namespace CloudFront {
|
|
|
4619
4868
|
*/
|
|
4620
4869
|
FunctionOutput?: sensitiveStringType;
|
|
4621
4870
|
}
|
|
4871
|
+
export interface TrafficConfig {
|
|
4872
|
+
/**
|
|
4873
|
+
* Contains the percentage of traffic to send to the staging distribution.
|
|
4874
|
+
*/
|
|
4875
|
+
SingleWeightConfig?: ContinuousDeploymentSingleWeightConfig;
|
|
4876
|
+
/**
|
|
4877
|
+
* Determines which HTTP requests are sent to the staging distribution.
|
|
4878
|
+
*/
|
|
4879
|
+
SingleHeaderConfig?: ContinuousDeploymentSingleHeaderConfig;
|
|
4880
|
+
/**
|
|
4881
|
+
* The type of traffic configuration.
|
|
4882
|
+
*/
|
|
4883
|
+
Type: ContinuousDeploymentPolicyType;
|
|
4884
|
+
}
|
|
4622
4885
|
export type TrustedKeyGroupIdList = string[];
|
|
4623
4886
|
export interface TrustedKeyGroups {
|
|
4624
4887
|
/**
|
|
@@ -4706,6 +4969,30 @@ declare namespace CloudFront {
|
|
|
4706
4969
|
*/
|
|
4707
4970
|
ETag?: string;
|
|
4708
4971
|
}
|
|
4972
|
+
export interface UpdateContinuousDeploymentPolicyRequest {
|
|
4973
|
+
/**
|
|
4974
|
+
* The continuous deployment policy configuration.
|
|
4975
|
+
*/
|
|
4976
|
+
ContinuousDeploymentPolicyConfig: ContinuousDeploymentPolicyConfig;
|
|
4977
|
+
/**
|
|
4978
|
+
* The identifier of the continuous deployment policy that you are updating.
|
|
4979
|
+
*/
|
|
4980
|
+
Id: string;
|
|
4981
|
+
/**
|
|
4982
|
+
* The current version (ETag value) of the continuous deployment policy that you are updating.
|
|
4983
|
+
*/
|
|
4984
|
+
IfMatch?: string;
|
|
4985
|
+
}
|
|
4986
|
+
export interface UpdateContinuousDeploymentPolicyResult {
|
|
4987
|
+
/**
|
|
4988
|
+
* A continuous deployment policy.
|
|
4989
|
+
*/
|
|
4990
|
+
ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
|
|
4991
|
+
/**
|
|
4992
|
+
* The version identifier for the current version of the continuous deployment policy.
|
|
4993
|
+
*/
|
|
4994
|
+
ETag?: string;
|
|
4995
|
+
}
|
|
4709
4996
|
export interface UpdateDistributionRequest {
|
|
4710
4997
|
/**
|
|
4711
4998
|
* The distribution's configuration information.
|
|
@@ -5011,6 +5298,7 @@ declare namespace CloudFront {
|
|
|
5011
5298
|
export type ViewerProtocolPolicy = "allow-all"|"https-only"|"redirect-to-https"|string;
|
|
5012
5299
|
export type aliasString = string;
|
|
5013
5300
|
export type distributionIdString = string;
|
|
5301
|
+
export type float = number;
|
|
5014
5302
|
export type integer = number;
|
|
5015
5303
|
export type listConflictingAliasesMaxItemsInteger = number;
|
|
5016
5304
|
export type long = number;
|
|
@@ -1432,6 +1432,7 @@ declare namespace Connect {
|
|
|
1432
1432
|
export type AgentStatusTypes = AgentStatusType[];
|
|
1433
1433
|
export type AgentUsername = string;
|
|
1434
1434
|
export type AliasArn = string;
|
|
1435
|
+
export type AllowedAccessControlTags = {[key: string]: SecurityProfilePolicyValue};
|
|
1435
1436
|
export type AllowedMonitorCapabilities = MonitorCapability[];
|
|
1436
1437
|
export interface AnswerMachineDetectionConfig {
|
|
1437
1438
|
/**
|
|
@@ -2268,11 +2269,12 @@ declare namespace Connect {
|
|
|
2268
2269
|
*/
|
|
2269
2270
|
RoutingProfileId?: RoutingProfileId;
|
|
2270
2271
|
}
|
|
2272
|
+
export type CreateSecurityProfileName = string;
|
|
2271
2273
|
export interface CreateSecurityProfileRequest {
|
|
2272
2274
|
/**
|
|
2273
2275
|
* The name of the security profile.
|
|
2274
2276
|
*/
|
|
2275
|
-
SecurityProfileName:
|
|
2277
|
+
SecurityProfileName: CreateSecurityProfileName;
|
|
2276
2278
|
/**
|
|
2277
2279
|
* The description of the security profile.
|
|
2278
2280
|
*/
|
|
@@ -2289,6 +2291,14 @@ declare namespace Connect {
|
|
|
2289
2291
|
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
2290
2292
|
*/
|
|
2291
2293
|
Tags?: TagMap;
|
|
2294
|
+
/**
|
|
2295
|
+
* The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
|
|
2296
|
+
*/
|
|
2297
|
+
AllowedAccessControlTags?: AllowedAccessControlTags;
|
|
2298
|
+
/**
|
|
2299
|
+
* The list of resources that a security profile applies tag restrictions to in Amazon Connect.
|
|
2300
|
+
*/
|
|
2301
|
+
TagRestrictedResources?: TagRestrictedResourceList;
|
|
2292
2302
|
}
|
|
2293
2303
|
export interface CreateSecurityProfileResponse {
|
|
2294
2304
|
/**
|
|
@@ -5694,12 +5704,22 @@ declare namespace Connect {
|
|
|
5694
5704
|
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
5695
5705
|
*/
|
|
5696
5706
|
Tags?: TagMap;
|
|
5707
|
+
/**
|
|
5708
|
+
* The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
|
|
5709
|
+
*/
|
|
5710
|
+
AllowedAccessControlTags?: AllowedAccessControlTags;
|
|
5711
|
+
/**
|
|
5712
|
+
* The list of resources that a security profile applies tag restrictions to in Amazon Connect.
|
|
5713
|
+
*/
|
|
5714
|
+
TagRestrictedResources?: TagRestrictedResourceList;
|
|
5697
5715
|
}
|
|
5698
5716
|
export type SecurityProfileDescription = string;
|
|
5699
5717
|
export type SecurityProfileId = string;
|
|
5700
5718
|
export type SecurityProfileIds = SecurityProfileId[];
|
|
5701
5719
|
export type SecurityProfileName = string;
|
|
5702
5720
|
export type SecurityProfilePermission = string;
|
|
5721
|
+
export type SecurityProfilePolicyKey = string;
|
|
5722
|
+
export type SecurityProfilePolicyValue = string;
|
|
5703
5723
|
export type SecurityProfileSearchConditionList = SecurityProfileSearchCriteria[];
|
|
5704
5724
|
export interface SecurityProfileSearchCriteria {
|
|
5705
5725
|
/**
|
|
@@ -6070,6 +6090,8 @@ declare namespace Connect {
|
|
|
6070
6090
|
*/
|
|
6071
6091
|
tags: TagMap;
|
|
6072
6092
|
}
|
|
6093
|
+
export type TagRestrictedResourceList = TagRestrictedResourceName[];
|
|
6094
|
+
export type TagRestrictedResourceName = string;
|
|
6073
6095
|
export type TagValue = string;
|
|
6074
6096
|
export type TaskTemplateArn = string;
|
|
6075
6097
|
export interface TaskTemplateConstraints {
|
|
@@ -6738,6 +6760,14 @@ declare namespace Connect {
|
|
|
6738
6760
|
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
6739
6761
|
*/
|
|
6740
6762
|
InstanceId: InstanceId;
|
|
6763
|
+
/**
|
|
6764
|
+
* The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
|
|
6765
|
+
*/
|
|
6766
|
+
AllowedAccessControlTags?: AllowedAccessControlTags;
|
|
6767
|
+
/**
|
|
6768
|
+
* The list of resources that a security profile applies tag restrictions to in Amazon Connect.
|
|
6769
|
+
*/
|
|
6770
|
+
TagRestrictedResources?: TagRestrictedResourceList;
|
|
6741
6771
|
}
|
|
6742
6772
|
export interface UpdateTaskTemplateRequest {
|
|
6743
6773
|
/**
|