cdk-comprehend-s3olap 2.0.76 → 2.0.79
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/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +350 -82
- package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +107 -91
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +123 -79
- package/node_modules/aws-sdk/apis/panorama-2019-07-24.min.json +47 -10
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +64 -29
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +23 -0
- package/node_modules/aws-sdk/apis/sso-oidc-2019-06-10.min.json +1 -2
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +246 -4
- package/node_modules/aws-sdk/clients/configservice.d.ts +27 -7
- package/node_modules/aws-sdk/clients/elbv2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/gamelift.d.ts +1 -1
- package/node_modules/aws-sdk/clients/iam.d.ts +6 -6
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +60 -11
- package/node_modules/aws-sdk/clients/ivs.d.ts +3 -3
- package/node_modules/aws-sdk/clients/panorama.d.ts +62 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +38 -4
- package/node_modules/aws-sdk/clients/rds.d.ts +21 -0
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +6 -6
- package/node_modules/aws-sdk/clients/ssooidc.d.ts +12 -12
- package/node_modules/aws-sdk/clients/transfer.d.ts +20 -20
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +483 -176
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +85 -85
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
@@ -101,6 +101,14 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
101
101
|
* Enables additional CloudWatch metrics for the specified CloudFront distribution. The additional metrics incur an additional cost. For more information, see Viewing additional CloudFront distribution metrics in the Amazon CloudFront Developer Guide.
|
102
102
|
*/
|
103
103
|
createMonitoringSubscription(callback?: (err: AWSError, data: CloudFront.Types.CreateMonitoringSubscriptionResult) => void): Request<CloudFront.Types.CreateMonitoringSubscriptionResult, AWSError>;
|
104
|
+
/**
|
105
|
+
* Creates a new origin access control in CloudFront. After you create an origin access control, you can add it to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin. For an Amazon S3 origin, this makes it possible to block public access to the Amazon S3 bucket so that viewers (users) can access the content in the bucket only through CloudFront. For more information about using a CloudFront origin access control, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.
|
106
|
+
*/
|
107
|
+
createOriginAccessControl(params: CloudFront.Types.CreateOriginAccessControlRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateOriginAccessControlResult) => void): Request<CloudFront.Types.CreateOriginAccessControlResult, AWSError>;
|
108
|
+
/**
|
109
|
+
* Creates a new origin access control in CloudFront. After you create an origin access control, you can add it to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin. For an Amazon S3 origin, this makes it possible to block public access to the Amazon S3 bucket so that viewers (users) can access the content in the bucket only through CloudFront. For more information about using a CloudFront origin access control, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.
|
110
|
+
*/
|
111
|
+
createOriginAccessControl(callback?: (err: AWSError, data: CloudFront.Types.CreateOriginAccessControlResult) => void): Request<CloudFront.Types.CreateOriginAccessControlResult, AWSError>;
|
104
112
|
/**
|
105
113
|
* Creates an origin request policy. After you create an origin request policy, you can attach it to one or more cache behaviors. When it’s attached to a cache behavior, the origin request policy determines the values that CloudFront includes in requests that it sends to the origin. Each request that CloudFront sends to the origin includes the following: The request body and the URL path (without the domain name) from the viewer request. The headers that CloudFront automatically includes in every origin request, including Host, User-Agent, and X-Amz-Cf-Id. All HTTP headers, cookies, and URL query strings that are specified in the cache policy or the origin request policy. These can include items from the viewer request and, in the case of headers, additional ones that are added by CloudFront. CloudFront sends a request when it can’t find a valid object in its cache that matches the request. If you want to send values to the origin and also include them in the cache key, use CachePolicy. For more information about origin request policies, see Controlling origin requests in the Amazon CloudFront Developer Guide.
|
106
114
|
*/
|
@@ -213,6 +221,14 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
213
221
|
* Disables additional CloudWatch metrics for the specified CloudFront distribution.
|
214
222
|
*/
|
215
223
|
deleteMonitoringSubscription(callback?: (err: AWSError, data: CloudFront.Types.DeleteMonitoringSubscriptionResult) => void): Request<CloudFront.Types.DeleteMonitoringSubscriptionResult, AWSError>;
|
224
|
+
/**
|
225
|
+
* Deletes a CloudFront origin access control. You cannot delete an origin access control if it's in use. First, update all distributions to remove the origin access control from all origins, then delete the origin access control.
|
226
|
+
*/
|
227
|
+
deleteOriginAccessControl(params: CloudFront.Types.DeleteOriginAccessControlRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
228
|
+
/**
|
229
|
+
* Deletes a CloudFront origin access control. You cannot delete an origin access control if it's in use. First, update all distributions to remove the origin access control from all origins, then delete the origin access control.
|
230
|
+
*/
|
231
|
+
deleteOriginAccessControl(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
216
232
|
/**
|
217
233
|
* Deletes an origin request policy. You cannot delete an origin request policy if it’s attached to any cache behaviors. First update your distributions to remove the origin request policy from all cache behaviors, then delete the origin request policy. To delete an origin request policy, you must provide the policy’s identifier and version. To get the identifier, you can use ListOriginRequestPolicies or GetOriginRequestPolicy.
|
218
234
|
*/
|
@@ -381,6 +397,22 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
381
397
|
* Gets information about whether additional CloudWatch metrics are enabled for the specified CloudFront distribution.
|
382
398
|
*/
|
383
399
|
getMonitoringSubscription(callback?: (err: AWSError, data: CloudFront.Types.GetMonitoringSubscriptionResult) => void): Request<CloudFront.Types.GetMonitoringSubscriptionResult, AWSError>;
|
400
|
+
/**
|
401
|
+
* Gets a CloudFront origin access control.
|
402
|
+
*/
|
403
|
+
getOriginAccessControl(params: CloudFront.Types.GetOriginAccessControlRequest, callback?: (err: AWSError, data: CloudFront.Types.GetOriginAccessControlResult) => void): Request<CloudFront.Types.GetOriginAccessControlResult, AWSError>;
|
404
|
+
/**
|
405
|
+
* Gets a CloudFront origin access control.
|
406
|
+
*/
|
407
|
+
getOriginAccessControl(callback?: (err: AWSError, data: CloudFront.Types.GetOriginAccessControlResult) => void): Request<CloudFront.Types.GetOriginAccessControlResult, AWSError>;
|
408
|
+
/**
|
409
|
+
* Gets a CloudFront origin access control.
|
410
|
+
*/
|
411
|
+
getOriginAccessControlConfig(params: CloudFront.Types.GetOriginAccessControlConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetOriginAccessControlConfigResult) => void): Request<CloudFront.Types.GetOriginAccessControlConfigResult, AWSError>;
|
412
|
+
/**
|
413
|
+
* Gets a CloudFront origin access control.
|
414
|
+
*/
|
415
|
+
getOriginAccessControlConfig(callback?: (err: AWSError, data: CloudFront.Types.GetOriginAccessControlConfigResult) => void): Request<CloudFront.Types.GetOriginAccessControlConfigResult, AWSError>;
|
384
416
|
/**
|
385
417
|
* Gets an origin request policy, including the following metadata: The policy’s identifier. The date and time when the policy was last modified. To get an origin request policy, you must provide the policy’s identifier. If the origin request policy is attached to a distribution’s cache behavior, you can get the policy’s identifier using ListDistributions or GetDistribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using ListOriginRequestPolicies.
|
386
418
|
*/
|
@@ -573,6 +605,14 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
573
605
|
* Gets a list of key groups. 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.
|
574
606
|
*/
|
575
607
|
listKeyGroups(callback?: (err: AWSError, data: CloudFront.Types.ListKeyGroupsResult) => void): Request<CloudFront.Types.ListKeyGroupsResult, AWSError>;
|
608
|
+
/**
|
609
|
+
* Gets the list of CloudFront origin access controls in this 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 another request that specifies the NextMarker value from the current response as the Marker value in the next request.
|
610
|
+
*/
|
611
|
+
listOriginAccessControls(params: CloudFront.Types.ListOriginAccessControlsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListOriginAccessControlsResult) => void): Request<CloudFront.Types.ListOriginAccessControlsResult, AWSError>;
|
612
|
+
/**
|
613
|
+
* Gets the list of CloudFront origin access controls in this 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 another request that specifies the NextMarker value from the current response as the Marker value in the next request.
|
614
|
+
*/
|
615
|
+
listOriginAccessControls(callback?: (err: AWSError, data: CloudFront.Types.ListOriginAccessControlsResult) => void): Request<CloudFront.Types.ListOriginAccessControlsResult, AWSError>;
|
576
616
|
/**
|
577
617
|
* Gets a list of origin request policies. You can optionally apply a filter to return only the managed policies created by Amazon Web Services, or only the custom policies created 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.
|
578
618
|
*/
|
@@ -709,6 +749,14 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
709
749
|
* Updates a key group. When you update a key group, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update a key group: Get the current key group with GetKeyGroup or GetKeyGroupConfig. Locally modify the fields in the key group that you want to update. For example, add or remove public key IDs. Call UpdateKeyGroup with the entire key group object, including the fields that you modified and those that you didn’t.
|
710
750
|
*/
|
711
751
|
updateKeyGroup(callback?: (err: AWSError, data: CloudFront.Types.UpdateKeyGroupResult) => void): Request<CloudFront.Types.UpdateKeyGroupResult, AWSError>;
|
752
|
+
/**
|
753
|
+
* Updates a CloudFront origin access control.
|
754
|
+
*/
|
755
|
+
updateOriginAccessControl(params: CloudFront.Types.UpdateOriginAccessControlRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateOriginAccessControlResult) => void): Request<CloudFront.Types.UpdateOriginAccessControlResult, AWSError>;
|
756
|
+
/**
|
757
|
+
* Updates a CloudFront origin access control.
|
758
|
+
*/
|
759
|
+
updateOriginAccessControl(callback?: (err: AWSError, data: CloudFront.Types.UpdateOriginAccessControlResult) => void): Request<CloudFront.Types.UpdateOriginAccessControlResult, AWSError>;
|
712
760
|
/**
|
713
761
|
* Updates an origin request policy configuration. When you update an origin request policy configuration, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update an origin request policy configuration: Use GetOriginRequestPolicyConfig to get the current configuration. Locally modify the fields in the origin request policy configuration that you want to update. Call UpdateOriginRequestPolicy by providing the entire origin request policy configuration, including the fields that you modified and those that you didn’t.
|
714
762
|
*/
|
@@ -1407,6 +1455,26 @@ declare namespace CloudFront {
|
|
1407
1455
|
*/
|
1408
1456
|
MonitoringSubscription?: MonitoringSubscription;
|
1409
1457
|
}
|
1458
|
+
export interface CreateOriginAccessControlRequest {
|
1459
|
+
/**
|
1460
|
+
* Contains the origin access control.
|
1461
|
+
*/
|
1462
|
+
OriginAccessControlConfig: OriginAccessControlConfig;
|
1463
|
+
}
|
1464
|
+
export interface CreateOriginAccessControlResult {
|
1465
|
+
/**
|
1466
|
+
* Contains an origin access control.
|
1467
|
+
*/
|
1468
|
+
OriginAccessControl?: OriginAccessControl;
|
1469
|
+
/**
|
1470
|
+
* The URL of the origin access control.
|
1471
|
+
*/
|
1472
|
+
Location?: string;
|
1473
|
+
/**
|
1474
|
+
* The version identifier for the current version of the origin access control.
|
1475
|
+
*/
|
1476
|
+
ETag?: string;
|
1477
|
+
}
|
1410
1478
|
export interface CreateOriginRequestPolicyRequest {
|
1411
1479
|
/**
|
1412
1480
|
* An origin request policy configuration.
|
@@ -1745,6 +1813,16 @@ declare namespace CloudFront {
|
|
1745
1813
|
}
|
1746
1814
|
export interface DeleteMonitoringSubscriptionResult {
|
1747
1815
|
}
|
1816
|
+
export interface DeleteOriginAccessControlRequest {
|
1817
|
+
/**
|
1818
|
+
* The unique identifier of the origin access control that you are deleting.
|
1819
|
+
*/
|
1820
|
+
Id: string;
|
1821
|
+
/**
|
1822
|
+
* The current version (ETag value) of the origin access control that you are deleting.
|
1823
|
+
*/
|
1824
|
+
IfMatch?: string;
|
1825
|
+
}
|
1748
1826
|
export interface DeleteOriginRequestPolicyRequest {
|
1749
1827
|
/**
|
1750
1828
|
* The unique identifier for the origin request policy that you are deleting. To get the identifier, you can use ListOriginRequestPolicies.
|
@@ -2640,6 +2718,38 @@ declare namespace CloudFront {
|
|
2640
2718
|
*/
|
2641
2719
|
MonitoringSubscription?: MonitoringSubscription;
|
2642
2720
|
}
|
2721
|
+
export interface GetOriginAccessControlConfigRequest {
|
2722
|
+
/**
|
2723
|
+
* The unique identifier of the origin access control.
|
2724
|
+
*/
|
2725
|
+
Id: string;
|
2726
|
+
}
|
2727
|
+
export interface GetOriginAccessControlConfigResult {
|
2728
|
+
/**
|
2729
|
+
* Contains an origin access control.
|
2730
|
+
*/
|
2731
|
+
OriginAccessControlConfig?: OriginAccessControlConfig;
|
2732
|
+
/**
|
2733
|
+
* The version identifier for the current version of the origin access control.
|
2734
|
+
*/
|
2735
|
+
ETag?: string;
|
2736
|
+
}
|
2737
|
+
export interface GetOriginAccessControlRequest {
|
2738
|
+
/**
|
2739
|
+
* The unique identifier of the origin access control.
|
2740
|
+
*/
|
2741
|
+
Id: string;
|
2742
|
+
}
|
2743
|
+
export interface GetOriginAccessControlResult {
|
2744
|
+
/**
|
2745
|
+
* Contains an origin access control.
|
2746
|
+
*/
|
2747
|
+
OriginAccessControl?: OriginAccessControl;
|
2748
|
+
/**
|
2749
|
+
* The version identifier for the current version of the origin access control.
|
2750
|
+
*/
|
2751
|
+
ETag?: string;
|
2752
|
+
}
|
2643
2753
|
export interface GetOriginRequestPolicyConfigRequest {
|
2644
2754
|
/**
|
2645
2755
|
* The unique identifier for the origin request policy. If the origin request policy is attached to a distribution’s cache behavior, you can get the policy’s identifier using ListDistributions or GetDistribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using ListOriginRequestPolicies.
|
@@ -3254,6 +3364,22 @@ declare namespace CloudFront {
|
|
3254
3364
|
*/
|
3255
3365
|
KeyGroupList?: KeyGroupList;
|
3256
3366
|
}
|
3367
|
+
export interface ListOriginAccessControlsRequest {
|
3368
|
+
/**
|
3369
|
+
* Use this field when paginating results to indicate where to begin in your list of origin access controls. The response includes the items 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.
|
3370
|
+
*/
|
3371
|
+
Marker?: string;
|
3372
|
+
/**
|
3373
|
+
* The maximum number of origin access controls that you want in the response.
|
3374
|
+
*/
|
3375
|
+
MaxItems?: string;
|
3376
|
+
}
|
3377
|
+
export interface ListOriginAccessControlsResult {
|
3378
|
+
/**
|
3379
|
+
* A list of origin access controls.
|
3380
|
+
*/
|
3381
|
+
OriginAccessControlList?: OriginAccessControlList;
|
3382
|
+
}
|
3257
3383
|
export interface ListOriginRequestPoliciesRequest {
|
3258
3384
|
/**
|
3259
3385
|
* A filter to return only the specified kinds of origin request policies. Valid values are: managed – Returns only the managed policies created by Amazon Web Services. custom – Returns only the custom policies created in your Amazon Web Services account.
|
@@ -3419,7 +3545,99 @@ declare namespace CloudFront {
|
|
3419
3545
|
* CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin. For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.
|
3420
3546
|
*/
|
3421
3547
|
OriginShield?: OriginShield;
|
3548
|
+
/**
|
3549
|
+
* The unique identifier of an origin access control for this origin. For more information, see Restricting access to an Amazon S3 origin in the Amazon CloudFront Developer Guide.
|
3550
|
+
*/
|
3551
|
+
OriginAccessControlId?: string;
|
3422
3552
|
}
|
3553
|
+
export interface OriginAccessControl {
|
3554
|
+
/**
|
3555
|
+
* The unique identifier of the origin access control.
|
3556
|
+
*/
|
3557
|
+
Id: string;
|
3558
|
+
/**
|
3559
|
+
* The origin access control.
|
3560
|
+
*/
|
3561
|
+
OriginAccessControlConfig?: OriginAccessControlConfig;
|
3562
|
+
}
|
3563
|
+
export interface OriginAccessControlConfig {
|
3564
|
+
/**
|
3565
|
+
* A name to identify the origin access control.
|
3566
|
+
*/
|
3567
|
+
Name: string;
|
3568
|
+
/**
|
3569
|
+
* A description of the origin access control.
|
3570
|
+
*/
|
3571
|
+
Description: string;
|
3572
|
+
/**
|
3573
|
+
* The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.
|
3574
|
+
*/
|
3575
|
+
SigningProtocol: OriginAccessControlSigningProtocols;
|
3576
|
+
/**
|
3577
|
+
* Specifies which requests CloudFront signs (adds authentication information to). Specify always for the most common use case. For more information, see origin access control advanced settings in the Amazon CloudFront Developer Guide. This field can have one of the following values: always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if one exists. never – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control. no-override – If the viewer request doesn't contain the Authorization header, then CloudFront signs the origin request. If the viewer request contains the Authorization header, then CloudFront doesn't sign the origin request and instead passes along the Authorization header from the viewer request. WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to an origin request policy for all cache behaviors that use origins associated with this origin access control.
|
3578
|
+
*/
|
3579
|
+
SigningBehavior: OriginAccessControlSigningBehaviors;
|
3580
|
+
/**
|
3581
|
+
* The type of origin that this origin access control is for. The only valid value is s3.
|
3582
|
+
*/
|
3583
|
+
OriginAccessControlOriginType: OriginAccessControlOriginTypes;
|
3584
|
+
}
|
3585
|
+
export interface OriginAccessControlList {
|
3586
|
+
/**
|
3587
|
+
* The value of the Marker field that was provided in the request.
|
3588
|
+
*/
|
3589
|
+
Marker: string;
|
3590
|
+
/**
|
3591
|
+
* If there are more items in the list than are in this response, this element is present. It contains the value to use in the Marker field of another request to continue listing origin access controls.
|
3592
|
+
*/
|
3593
|
+
NextMarker?: string;
|
3594
|
+
/**
|
3595
|
+
* The maximum number of origin access controls requested.
|
3596
|
+
*/
|
3597
|
+
MaxItems: integer;
|
3598
|
+
/**
|
3599
|
+
* If there are more items in the list than are in this response, this value is true.
|
3600
|
+
*/
|
3601
|
+
IsTruncated: boolean;
|
3602
|
+
/**
|
3603
|
+
* The number of origin access controls returned in the response.
|
3604
|
+
*/
|
3605
|
+
Quantity: integer;
|
3606
|
+
/**
|
3607
|
+
* Contains the origin access controls in the list.
|
3608
|
+
*/
|
3609
|
+
Items?: OriginAccessControlSummaryList;
|
3610
|
+
}
|
3611
|
+
export type OriginAccessControlOriginTypes = "s3"|string;
|
3612
|
+
export type OriginAccessControlSigningBehaviors = "never"|"always"|"no-override"|string;
|
3613
|
+
export type OriginAccessControlSigningProtocols = "sigv4"|string;
|
3614
|
+
export interface OriginAccessControlSummary {
|
3615
|
+
/**
|
3616
|
+
* The unique identifier of the origin access control.
|
3617
|
+
*/
|
3618
|
+
Id: string;
|
3619
|
+
/**
|
3620
|
+
* A description of the origin access control.
|
3621
|
+
*/
|
3622
|
+
Description: string;
|
3623
|
+
/**
|
3624
|
+
* A unique name that identifies the origin access control.
|
3625
|
+
*/
|
3626
|
+
Name: string;
|
3627
|
+
/**
|
3628
|
+
* The signing protocol of the origin access control. The signing protocol determines how CloudFront signs (authenticates) requests. The only valid value is sigv4.
|
3629
|
+
*/
|
3630
|
+
SigningProtocol: OriginAccessControlSigningProtocols;
|
3631
|
+
/**
|
3632
|
+
* A value that specifies which requests CloudFront signs (adds authentication information to). This field can have one of the following values: never – CloudFront doesn't sign any origin requests. always – CloudFront signs all origin requests, overwriting the Authorization header from the viewer request if necessary. no-override – If the viewer request doesn't contain the Authorization header, CloudFront signs the origin request. If the viewer request contains the Authorization header, CloudFront doesn't sign the origin request, but instead passes along the Authorization header that it received in the viewer request.
|
3633
|
+
*/
|
3634
|
+
SigningBehavior: OriginAccessControlSigningBehaviors;
|
3635
|
+
/**
|
3636
|
+
* The type of origin that this origin access control is for. The only valid value is s3.
|
3637
|
+
*/
|
3638
|
+
OriginAccessControlOriginType: OriginAccessControlOriginTypes;
|
3639
|
+
}
|
3640
|
+
export type OriginAccessControlSummaryList = OriginAccessControlSummary[];
|
3423
3641
|
export interface OriginCustomHeader {
|
3424
3642
|
/**
|
3425
3643
|
* The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.
|
@@ -3908,14 +4126,14 @@ declare namespace CloudFront {
|
|
3908
4126
|
* A configuration for a set of security-related HTTP response headers.
|
3909
4127
|
*/
|
3910
4128
|
SecurityHeadersConfig?: ResponseHeadersPolicySecurityHeadersConfig;
|
3911
|
-
/**
|
3912
|
-
* A configuration for a set of custom HTTP response headers.
|
3913
|
-
*/
|
3914
|
-
CustomHeadersConfig?: ResponseHeadersPolicyCustomHeadersConfig;
|
3915
4129
|
/**
|
3916
4130
|
* A configuration for enabling the Server-Timing header in HTTP responses sent from CloudFront.
|
3917
4131
|
*/
|
3918
4132
|
ServerTimingHeadersConfig?: ResponseHeadersPolicyServerTimingHeadersConfig;
|
4133
|
+
/**
|
4134
|
+
* A configuration for a set of custom HTTP response headers.
|
4135
|
+
*/
|
4136
|
+
CustomHeadersConfig?: ResponseHeadersPolicyCustomHeadersConfig;
|
3919
4137
|
}
|
3920
4138
|
export interface ResponseHeadersPolicyContentSecurityPolicy {
|
3921
4139
|
/**
|
@@ -4612,6 +4830,30 @@ declare namespace CloudFront {
|
|
4612
4830
|
*/
|
4613
4831
|
ETag?: string;
|
4614
4832
|
}
|
4833
|
+
export interface UpdateOriginAccessControlRequest {
|
4834
|
+
/**
|
4835
|
+
* An origin access control.
|
4836
|
+
*/
|
4837
|
+
OriginAccessControlConfig: OriginAccessControlConfig;
|
4838
|
+
/**
|
4839
|
+
* The unique identifier of the origin access control that you are updating.
|
4840
|
+
*/
|
4841
|
+
Id: string;
|
4842
|
+
/**
|
4843
|
+
* The current version (ETag value) of the origin access control that you are updating.
|
4844
|
+
*/
|
4845
|
+
IfMatch?: string;
|
4846
|
+
}
|
4847
|
+
export interface UpdateOriginAccessControlResult {
|
4848
|
+
/**
|
4849
|
+
* The origin access control after it has been updated.
|
4850
|
+
*/
|
4851
|
+
OriginAccessControl?: OriginAccessControl;
|
4852
|
+
/**
|
4853
|
+
* The new version of the origin access control after it has been updated.
|
4854
|
+
*/
|
4855
|
+
ETag?: string;
|
4856
|
+
}
|
4615
4857
|
export interface UpdateOriginRequestPolicyRequest {
|
4616
4858
|
/**
|
4617
4859
|
* An origin request policy configuration.
|
@@ -568,11 +568,11 @@ declare class ConfigService extends Service {
|
|
568
568
|
*/
|
569
569
|
putConfigurationRecorder(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
570
570
|
/**
|
571
|
-
* Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify
|
571
|
+
* Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify one and only one of theTemplateS3Uri, TemplateBody or TemplateSSMDocumentDetails parameters.
|
572
572
|
*/
|
573
573
|
putConformancePack(params: ConfigService.Types.PutConformancePackRequest, callback?: (err: AWSError, data: ConfigService.Types.PutConformancePackResponse) => void): Request<ConfigService.Types.PutConformancePackResponse, AWSError>;
|
574
574
|
/**
|
575
|
-
* Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify
|
575
|
+
* Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify one and only one of theTemplateS3Uri, TemplateBody or TemplateSSMDocumentDetails parameters.
|
576
576
|
*/
|
577
577
|
putConformancePack(callback?: (err: AWSError, data: ConfigService.Types.PutConformancePackResponse) => void): Request<ConfigService.Types.PutConformancePackResponse, AWSError>;
|
578
578
|
/**
|
@@ -1569,13 +1569,17 @@ declare namespace ConfigService {
|
|
1569
1569
|
*/
|
1570
1570
|
ConformancePackInputParameters?: ConformancePackInputParameters;
|
1571
1571
|
/**
|
1572
|
-
*
|
1572
|
+
* The last time a conformation pack update was requested.
|
1573
1573
|
*/
|
1574
1574
|
LastUpdateRequestedTime?: _Date;
|
1575
1575
|
/**
|
1576
|
-
* Amazon Web Services service that created the conformance pack.
|
1576
|
+
* The Amazon Web Services service that created the conformance pack.
|
1577
1577
|
*/
|
1578
1578
|
CreatedBy?: StringWithCharLimit256;
|
1579
|
+
/**
|
1580
|
+
* An object that contains the name or Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack.
|
1581
|
+
*/
|
1582
|
+
TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails;
|
1579
1583
|
}
|
1580
1584
|
export type ConformancePackDetailList = ConformancePackDetail[];
|
1581
1585
|
export interface ConformancePackEvaluationFilters {
|
@@ -3661,15 +3665,15 @@ declare namespace ConfigService {
|
|
3661
3665
|
}
|
3662
3666
|
export interface PutConformancePackRequest {
|
3663
3667
|
/**
|
3664
|
-
*
|
3668
|
+
* The unique name of the conformance pack you want to deploy.
|
3665
3669
|
*/
|
3666
3670
|
ConformancePackName: ConformancePackName;
|
3667
3671
|
/**
|
3668
|
-
*
|
3672
|
+
* The location of the file containing the template body (s3://bucketname/prefix). The uri must point to a conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same region as the conformance pack. You must have access to read Amazon S3 bucket.
|
3669
3673
|
*/
|
3670
3674
|
TemplateS3Uri?: TemplateS3Uri;
|
3671
3675
|
/**
|
3672
|
-
* A string containing full conformance pack template body.
|
3676
|
+
* A string containing the full conformance pack template body. The structure containing the template body has a minimum length of 1 byte and a maximum length of 51,200 bytes. You can only use a YAML template with two resource types: Config rule (AWS::Config::ConfigRule) and remediation action (AWS::Config::RemediationConfiguration).
|
3673
3677
|
*/
|
3674
3678
|
TemplateBody?: TemplateBody;
|
3675
3679
|
/**
|
@@ -3684,6 +3688,10 @@ declare namespace ConfigService {
|
|
3684
3688
|
* A list of ConformancePackInputParameter objects.
|
3685
3689
|
*/
|
3686
3690
|
ConformancePackInputParameters?: ConformancePackInputParameters;
|
3691
|
+
/**
|
3692
|
+
* An object of type TemplateSSMDocumentDetails, which contains the name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack.
|
3693
|
+
*/
|
3694
|
+
TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails;
|
3687
3695
|
}
|
3688
3696
|
export interface PutConformancePackResponse {
|
3689
3697
|
/**
|
@@ -4183,6 +4191,8 @@ declare namespace ConfigService {
|
|
4183
4191
|
export type RetentionConfigurationNameList = RetentionConfigurationName[];
|
4184
4192
|
export type RetentionPeriodInDays = number;
|
4185
4193
|
export type RuleLimit = number;
|
4194
|
+
export type SSMDocumentName = string;
|
4195
|
+
export type SSMDocumentVersion = string;
|
4186
4196
|
export type SchemaVersionId = string;
|
4187
4197
|
export interface Scope {
|
4188
4198
|
/**
|
@@ -4446,6 +4456,16 @@ declare namespace ConfigService {
|
|
4446
4456
|
export type TagsList = Tag[];
|
4447
4457
|
export type TemplateBody = string;
|
4448
4458
|
export type TemplateS3Uri = string;
|
4459
|
+
export interface TemplateSSMDocumentDetails {
|
4460
|
+
/**
|
4461
|
+
* The name or Amazon Resource Name (ARN) of the SSM document to use to create a conformance pack. If you use the Document Name, Config checks only your account and region for the SSM document. If you want to use an SSM document from another region or account, you must provide the ARN.
|
4462
|
+
*/
|
4463
|
+
DocumentName: SSMDocumentName;
|
4464
|
+
/**
|
4465
|
+
* The version of the SSM document to use to create a conformance pack. By default, Config uses the latest version. This field is optional.
|
4466
|
+
*/
|
4467
|
+
DocumentVersion?: SSMDocumentVersion;
|
4468
|
+
}
|
4449
4469
|
export type UnprocessedResourceIdentifierList = AggregateResourceIdentifier[];
|
4450
4470
|
export interface UntagResourceRequest {
|
4451
4471
|
/**
|
@@ -1805,7 +1805,7 @@ declare namespace ELBv2 {
|
|
1805
1805
|
export type TargetGroupArns = TargetGroupArn[];
|
1806
1806
|
export interface TargetGroupAttribute {
|
1807
1807
|
/**
|
1808
|
-
* The name of the attribute. The following attribute is supported by all load balancers: deregistration_delay.timeout_seconds - The amount of time, in seconds, for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused. The range is 0-3600 seconds. The default value is 300 seconds. If the target is a Lambda function, this attribute is not supported. The following attributes are supported by
|
1808
|
+
* The name of the attribute. The following attribute is supported by all load balancers: deregistration_delay.timeout_seconds - The amount of time, in seconds, for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused. The range is 0-3600 seconds. The default value is 300 seconds. If the target is a Lambda function, this attribute is not supported. The following attributes are supported by Application Load Balancers, Network Load Balancers, and Gateway Load Balancers: stickiness.enabled - Indicates whether target stickiness is enabled. The value is true or false. The default is false. stickiness.type - Indicates the type of stickiness. The possible values are: lb_cookie and app_cookie for Application Load Balancers source_ip for Network Load Balancers source_ip_dest_ip and source_ip_dest_ip_proto for Gateway Load Balancers The following attributes are supported only if the load balancer is an Application Load Balancer and the target is an instance or an IP address: load_balancing.algorithm.type - The load balancing algorithm determines how the load balancer selects targets when routing requests. The value is round_robin or least_outstanding_requests. The default is round_robin. slow_start.duration_seconds - The time period, in seconds, during which a newly registered target receives an increasing share of the traffic to the target group. After this time period ends, the target receives its full share of traffic. The range is 30-900 seconds (15 minutes). The default is 0 seconds (disabled). stickiness.app_cookie.cookie_name - Indicates the name of the application-based cookie. Names that start with the following prefixes are not allowed: AWSALB, AWSALBAPP, and AWSALBTG; they're reserved for use by the load balancer. stickiness.app_cookie.duration_seconds - The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the application-based cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds). stickiness.lb_cookie.duration_seconds - The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load balancer-generated cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds). The following attribute is supported only if the load balancer is an Application Load Balancer and the target is a Lambda function: lambda.multi_value_headers.enabled - Indicates whether the request and response headers that are exchanged between the load balancer and the Lambda function include arrays of values or strings. The value is true or false. The default is false. If the value is false and the request contains a duplicate header field name or query parameter key, the load balancer uses the last value sent by the client. The following attributes are supported only by Network Load Balancers: deregistration_delay.connection_termination.enabled - Indicates whether the load balancer terminates connections at the end of the deregistration timeout. The value is true or false. The default is false. preserve_client_ip.enabled - Indicates whether client IP preservation is enabled. The value is true or false. The default is disabled if the target group type is IP address and the target group protocol is TCP or TLS. Otherwise, the default is enabled. Client IP preservation cannot be disabled for UDP and TCP_UDP target groups. proxy_protocol_v2.enabled - Indicates whether Proxy Protocol version 2 is enabled. The value is true or false. The default is false.
|
1809
1809
|
*/
|
1810
1810
|
Key?: TargetGroupAttributeKey;
|
1811
1811
|
/**
|
@@ -2257,7 +2257,7 @@ declare namespace GameLift {
|
|
2257
2257
|
Location?: LocationStringModel;
|
2258
2258
|
}
|
2259
2259
|
export type EC2InstanceLimitList = EC2InstanceLimit[];
|
2260
|
-
export type EC2InstanceType = "t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|string;
|
2260
|
+
export type EC2InstanceType = "t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|string;
|
2261
2261
|
export interface Event {
|
2262
2262
|
/**
|
2263
2263
|
* A unique identifier for a fleet event.
|
@@ -609,11 +609,11 @@ declare class IAM extends Service {
|
|
609
609
|
*/
|
610
610
|
getUserPolicy(callback?: (err: AWSError, data: IAM.Types.GetUserPolicyResponse) => void): Request<IAM.Types.GetUserPolicyResponse, AWSError>;
|
611
611
|
/**
|
612
|
-
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName
|
612
|
+
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
|
613
613
|
*/
|
614
614
|
listAccessKeys(params: IAM.Types.ListAccessKeysRequest, callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
|
615
615
|
/**
|
616
|
-
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName
|
616
|
+
* Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
|
617
617
|
*/
|
618
618
|
listAccessKeys(callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
|
619
619
|
/**
|
@@ -1121,11 +1121,11 @@ declare class IAM extends Service {
|
|
1121
1121
|
*/
|
1122
1122
|
untagUser(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
1123
1123
|
/**
|
1124
|
-
* Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
|
1124
|
+
* Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
|
1125
1125
|
*/
|
1126
1126
|
updateAccessKey(params: IAM.Types.UpdateAccessKeyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
1127
1127
|
/**
|
1128
|
-
* Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
|
1128
|
+
* Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
|
1129
1129
|
*/
|
1130
1130
|
updateAccessKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
1131
1131
|
/**
|
@@ -4519,7 +4519,7 @@ declare namespace IAM {
|
|
4519
4519
|
*/
|
4520
4520
|
ContextEntries?: ContextEntryListType;
|
4521
4521
|
/**
|
4522
|
-
* Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security
|
4522
|
+
* Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide. EC2-VPC-InstanceStore instance, image, security group, network interface EC2-VPC-InstanceStore-Subnet instance, image, security group, network interface, subnet EC2-VPC-EBS instance, image, security group, network interface, volume EC2-VPC-EBS-Subnet instance, image, security group, network interface, subnet, volume
|
4523
4523
|
*/
|
4524
4524
|
ResourceHandlingOption?: ResourceHandlingOptionType;
|
4525
4525
|
/**
|
@@ -4583,7 +4583,7 @@ declare namespace IAM {
|
|
4583
4583
|
*/
|
4584
4584
|
ContextEntries?: ContextEntryListType;
|
4585
4585
|
/**
|
4586
|
-
* Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide. EC2-
|
4586
|
+
* Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide. EC2-VPC-InstanceStore instance, image, security group, network interface EC2-VPC-InstanceStore-Subnet instance, image, security group, network interface, subnet EC2-VPC-EBS instance, image, security group, network interface, volume EC2-VPC-EBS-Subnet instance, image, security group, network interface, subnet, volume
|
4587
4587
|
*/
|
4588
4588
|
ResourceHandlingOption?: ResourceHandlingOptionType;
|
4589
4589
|
/**
|