cdk-lambda-subminute 2.0.489 → 2.0.490
Sign up to get free protection for your applications and to get access to all the features.
- package/.jsii +30 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/application-signals-2024-04-15.min.json +144 -54
- package/node_modules/aws-sdk/apis/bedrock-agent-2023-06-05.min.json +28 -6
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +268 -250
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +677 -635
- package/node_modules/aws-sdk/apis/elasticloadbalancingv2-2015-12-01.examples.json +18 -0
- package/node_modules/aws-sdk/apis/elasticloadbalancingv2-2015-12-01.min.json +65 -11
- package/node_modules/aws-sdk/apis/finspace-2021-03-12.min.json +7 -1
- package/node_modules/aws-sdk/apis/fis-2020-12-01.min.json +80 -0
- package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +191 -64
- package/node_modules/aws-sdk/apis/logs-2014-03-28.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +116 -42
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +349 -341
- package/node_modules/aws-sdk/apis/qapps-2023-11-27.examples.json +23 -0
- package/node_modules/aws-sdk/apis/qapps-2023-11-27.min.json +60 -21
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +92 -4
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1018 -972
- package/node_modules/aws-sdk/apis/timestream-influxdb-2023-01-27.min.json +3 -1
- package/node_modules/aws-sdk/clients/applicationsignals.d.ts +136 -22
- package/node_modules/aws-sdk/clients/appsync.d.ts +2 -2
- package/node_modules/aws-sdk/clients/bedrockagent.d.ts +19 -2
- package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +184 -5
- package/node_modules/aws-sdk/clients/codepipeline.d.ts +8 -8
- package/node_modules/aws-sdk/clients/connect.d.ts +39 -3
- package/node_modules/aws-sdk/clients/datazone.d.ts +42 -0
- package/node_modules/aws-sdk/clients/elbv2.d.ts +59 -2
- package/node_modules/aws-sdk/clients/finspace.d.ts +3 -3
- package/node_modules/aws-sdk/clients/fis.d.ts +83 -1
- package/node_modules/aws-sdk/clients/gamelift.d.ts +27 -27
- package/node_modules/aws-sdk/clients/kinesisanalyticsv2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/mediaconnect.d.ts +49 -0
- package/node_modules/aws-sdk/clients/medialive.d.ts +11 -0
- package/node_modules/aws-sdk/clients/qapps.d.ts +44 -2
- package/node_modules/aws-sdk/clients/s3control.d.ts +110 -31
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +64 -4
- package/node_modules/aws-sdk/clients/timestreaminfluxdb.d.ts +9 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +22 -22
- package/node_modules/aws-sdk/dist/aws-sdk.js +548 -331
- 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/lib/maintenance_mode_message.js +3 -3
- package/node_modules/aws-sdk/lib/region_config_data.json +12 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -140,6 +140,14 @@ declare class MediaConnect extends Service {
|
|
140
140
|
* Displays details of the flow's source stream. The response contains information about the contents of the stream and its programs.
|
141
141
|
*/
|
142
142
|
describeFlowSourceMetadata(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceMetadataResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceMetadataResponse, AWSError>;
|
143
|
+
/**
|
144
|
+
* Displays the thumbnail details of a flow's source stream.
|
145
|
+
*/
|
146
|
+
describeFlowSourceThumbnail(params: MediaConnect.Types.DescribeFlowSourceThumbnailRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceThumbnailResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceThumbnailResponse, AWSError>;
|
147
|
+
/**
|
148
|
+
* Displays the thumbnail details of a flow's source stream.
|
149
|
+
*/
|
150
|
+
describeFlowSourceThumbnail(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceThumbnailResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceThumbnailResponse, AWSError>;
|
143
151
|
/**
|
144
152
|
* Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
|
145
153
|
*/
|
@@ -939,6 +947,7 @@ declare namespace MediaConnect {
|
|
939
947
|
*/
|
940
948
|
VpcInterfaces?: __listOfVpcInterfaceRequest;
|
941
949
|
Maintenance?: AddMaintenance;
|
950
|
+
SourceMonitoringConfig?: MonitoringConfig;
|
942
951
|
}
|
943
952
|
export interface CreateFlowResponse {
|
944
953
|
Flow?: Flow;
|
@@ -1060,6 +1069,15 @@ declare namespace MediaConnect {
|
|
1060
1069
|
Timestamp?: __timestampIso8601;
|
1061
1070
|
TransportMediaInfo?: TransportMediaInfo;
|
1062
1071
|
}
|
1072
|
+
export interface DescribeFlowSourceThumbnailRequest {
|
1073
|
+
/**
|
1074
|
+
* The Amazon Resource Name (ARN) of the flow.
|
1075
|
+
*/
|
1076
|
+
FlowArn: __string;
|
1077
|
+
}
|
1078
|
+
export interface DescribeFlowSourceThumbnailResponse {
|
1079
|
+
ThumbnailDetails?: ThumbnailDetails;
|
1080
|
+
}
|
1063
1081
|
export interface DescribeGatewayInstanceRequest {
|
1064
1082
|
/**
|
1065
1083
|
* The Amazon Resource Name (ARN) of the gateway instance that you want to describe.
|
@@ -1292,6 +1310,7 @@ declare namespace MediaConnect {
|
|
1292
1310
|
*/
|
1293
1311
|
VpcInterfaces?: __listOfVpcInterface;
|
1294
1312
|
Maintenance?: Maintenance;
|
1313
|
+
SourceMonitoringConfig?: MonitoringConfig;
|
1295
1314
|
}
|
1296
1315
|
export interface Fmtp {
|
1297
1316
|
/**
|
@@ -1944,6 +1963,12 @@ declare namespace MediaConnect {
|
|
1944
1963
|
*/
|
1945
1964
|
Errors: __listOf__string;
|
1946
1965
|
}
|
1966
|
+
export interface MonitoringConfig {
|
1967
|
+
/**
|
1968
|
+
* The state of thumbnail monitoring.
|
1969
|
+
*/
|
1970
|
+
ThumbnailState?: ThumbnailState;
|
1971
|
+
}
|
1947
1972
|
export type NetworkInterfaceType = "ena"|"efa"|string;
|
1948
1973
|
export interface Offering {
|
1949
1974
|
/**
|
@@ -2467,6 +2492,29 @@ declare namespace MediaConnect {
|
|
2467
2492
|
Tags: __mapOf__string;
|
2468
2493
|
}
|
2469
2494
|
export type Tcs = "SDR"|"PQ"|"HLG"|"LINEAR"|"BT2100LINPQ"|"BT2100LINHLG"|"ST2065-1"|"ST428-1"|"DENSITY"|string;
|
2495
|
+
export interface ThumbnailDetails {
|
2496
|
+
/**
|
2497
|
+
* The ARN of the flow that DescribeFlowSourceThumbnail was performed on.
|
2498
|
+
*/
|
2499
|
+
FlowArn: __string;
|
2500
|
+
/**
|
2501
|
+
* Thumbnail Base64 string.
|
2502
|
+
*/
|
2503
|
+
Thumbnail?: __string;
|
2504
|
+
/**
|
2505
|
+
* Status code and messages about the flow source thumbnail.
|
2506
|
+
*/
|
2507
|
+
ThumbnailMessages: __listOfMessageDetail;
|
2508
|
+
/**
|
2509
|
+
* Timecode of thumbnail.
|
2510
|
+
*/
|
2511
|
+
Timecode?: __string;
|
2512
|
+
/**
|
2513
|
+
* The timestamp of when thumbnail was generated.
|
2514
|
+
*/
|
2515
|
+
Timestamp?: __timestampIso8601;
|
2516
|
+
}
|
2517
|
+
export type ThumbnailState = "ENABLED"|"DISABLED"|string;
|
2470
2518
|
export interface Transport {
|
2471
2519
|
/**
|
2472
2520
|
* The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
@@ -2935,6 +2983,7 @@ declare namespace MediaConnect {
|
|
2935
2983
|
FlowArn: __string;
|
2936
2984
|
SourceFailoverConfig?: UpdateFailoverConfig;
|
2937
2985
|
Maintenance?: UpdateMaintenance;
|
2986
|
+
SourceMonitoringConfig?: MonitoringConfig;
|
2938
2987
|
}
|
2939
2988
|
export interface UpdateFlowResponse {
|
2940
2989
|
Flow?: Flow;
|
@@ -3635,6 +3635,11 @@ This field is optional; when no value is specified the encoder will choose the n
|
|
3635
3635
|
* Timecode burn-in settings
|
3636
3636
|
*/
|
3637
3637
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
3638
|
+
/**
|
3639
|
+
* Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
|
3640
|
+
apply an appropriate value.
|
3641
|
+
*/
|
3642
|
+
MinQp?: __integerMin1Max51;
|
3638
3643
|
}
|
3639
3644
|
export type H264SpatialAq = "DISABLED"|"ENABLED"|string;
|
3640
3645
|
export type H264SubGopLength = "DYNAMIC"|"FIXED"|string;
|
@@ -3839,6 +3844,11 @@ In all other configurations, you typically enter "none".
|
|
3839
3844
|
* Select the tree block size used for encoding. If you enter "auto", the encoder will pick the best size. If you are setting up the picture as a tile, you must set this to 32x32. In all other configurations, you typically enter "auto".
|
3840
3845
|
*/
|
3841
3846
|
TreeblockSize?: H265TreeblockSize;
|
3847
|
+
/**
|
3848
|
+
* Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
|
3849
|
+
apply an appropriate value.
|
3850
|
+
*/
|
3851
|
+
MinQp?: __integerMin1Max51;
|
3842
3852
|
}
|
3843
3853
|
export type H265Tier = "HIGH"|"MAIN"|string;
|
3844
3854
|
export type H265TimecodeInsertionBehavior = "DISABLED"|"PIC_TIMING_SEI"|string;
|
@@ -9321,6 +9331,7 @@ one destination per packager.
|
|
9321
9331
|
export type __listOfSrtCallerSource = SrtCallerSource[];
|
9322
9332
|
export type __listOfSrtCallerSourceRequest = SrtCallerSourceRequest[];
|
9323
9333
|
export type MultiplexPacketIdentifiersMapping = {[key: string]: MultiplexProgramPacketIdentifiersMap};
|
9334
|
+
export type __integerMin1Max51 = number;
|
9324
9335
|
/**
|
9325
9336
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
9326
9337
|
*/
|
@@ -172,13 +172,21 @@ declare class QApps extends Service {
|
|
172
172
|
*/
|
173
173
|
untagResource(callback?: (err: AWSError, data: QApps.Types.UntagResourceResponse) => void): Request<QApps.Types.UntagResourceResponse, AWSError>;
|
174
174
|
/**
|
175
|
-
* Updates the
|
175
|
+
* Updates the library item for an Amazon Q App.
|
176
176
|
*/
|
177
177
|
updateLibraryItem(params: QApps.Types.UpdateLibraryItemInput, callback?: (err: AWSError, data: QApps.Types.UpdateLibraryItemOutput) => void): Request<QApps.Types.UpdateLibraryItemOutput, AWSError>;
|
178
178
|
/**
|
179
|
-
* Updates the
|
179
|
+
* Updates the library item for an Amazon Q App.
|
180
180
|
*/
|
181
181
|
updateLibraryItem(callback?: (err: AWSError, data: QApps.Types.UpdateLibraryItemOutput) => void): Request<QApps.Types.UpdateLibraryItemOutput, AWSError>;
|
182
|
+
/**
|
183
|
+
* Updates the verification status of a library item for an Amazon Q App.
|
184
|
+
*/
|
185
|
+
updateLibraryItemMetadata(params: QApps.Types.UpdateLibraryItemMetadataInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
186
|
+
/**
|
187
|
+
* Updates the verification status of a library item for an Amazon Q App.
|
188
|
+
*/
|
189
|
+
updateLibraryItemMetadata(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
182
190
|
/**
|
183
191
|
* Updates an existing Amazon Q App, allowing modifications to its title, description, and definition.
|
184
192
|
*/
|
@@ -424,6 +432,10 @@ declare namespace QApps {
|
|
424
432
|
* The number of ratings the library item has received from users.
|
425
433
|
*/
|
426
434
|
ratingCount: Integer;
|
435
|
+
/**
|
436
|
+
* Indicates whether the library item has been verified.
|
437
|
+
*/
|
438
|
+
isVerified?: Boolean;
|
427
439
|
}
|
428
440
|
export interface CreateQAppInput {
|
429
441
|
/**
|
@@ -693,6 +705,10 @@ declare namespace QApps {
|
|
693
705
|
* The number of users who have associated the Q App with their account.
|
694
706
|
*/
|
695
707
|
userCount?: Integer;
|
708
|
+
/**
|
709
|
+
* Indicates whether the library item has been verified.
|
710
|
+
*/
|
711
|
+
isVerified?: Boolean;
|
696
712
|
}
|
697
713
|
export interface GetQAppInput {
|
698
714
|
/**
|
@@ -875,6 +891,10 @@ declare namespace QApps {
|
|
875
891
|
* The number of users who have the associated Q App.
|
876
892
|
*/
|
877
893
|
userCount?: Integer;
|
894
|
+
/**
|
895
|
+
* Indicates whether the library item has been verified.
|
896
|
+
*/
|
897
|
+
isVerified?: Boolean;
|
878
898
|
}
|
879
899
|
export type LibraryItemStatus = "PUBLISHED"|"DISABLED"|string;
|
880
900
|
export interface ListLibraryItemsInput {
|
@@ -1246,6 +1266,20 @@ declare namespace QApps {
|
|
1246
1266
|
*/
|
1247
1267
|
categories?: CategoryIdList;
|
1248
1268
|
}
|
1269
|
+
export interface UpdateLibraryItemMetadataInput {
|
1270
|
+
/**
|
1271
|
+
* The unique identifier of the Amazon Q Business application environment instance.
|
1272
|
+
*/
|
1273
|
+
instanceId: InstanceId;
|
1274
|
+
/**
|
1275
|
+
* The unique identifier of the updated library item.
|
1276
|
+
*/
|
1277
|
+
libraryItemId: UUID;
|
1278
|
+
/**
|
1279
|
+
* The verification status of the library item
|
1280
|
+
*/
|
1281
|
+
isVerified?: Boolean;
|
1282
|
+
}
|
1249
1283
|
export interface UpdateLibraryItemOutput {
|
1250
1284
|
/**
|
1251
1285
|
* The unique identifier of the updated library item.
|
@@ -1295,6 +1329,10 @@ declare namespace QApps {
|
|
1295
1329
|
* The number of users who have the associated Q App.
|
1296
1330
|
*/
|
1297
1331
|
userCount?: Integer;
|
1332
|
+
/**
|
1333
|
+
* Indicates whether the library item has been verified.
|
1334
|
+
*/
|
1335
|
+
isVerified?: Boolean;
|
1298
1336
|
}
|
1299
1337
|
export interface UpdateQAppInput {
|
1300
1338
|
/**
|
@@ -1421,6 +1459,10 @@ declare namespace QApps {
|
|
1421
1459
|
* The status of the user's association with the Q App.
|
1422
1460
|
*/
|
1423
1461
|
status?: String;
|
1462
|
+
/**
|
1463
|
+
* Indicates whether the Q App has been verified.
|
1464
|
+
*/
|
1465
|
+
isVerified?: Boolean;
|
1424
1466
|
}
|
1425
1467
|
export type UserAppsList = UserAppItem[];
|
1426
1468
|
/**
|
@@ -277,11 +277,11 @@ declare class S3Control extends Service {
|
|
277
277
|
*/
|
278
278
|
getAccessGrant(callback?: (err: AWSError, data: S3Control.Types.GetAccessGrantResult) => void): Request<S3Control.Types.GetAccessGrantResult, AWSError>;
|
279
279
|
/**
|
280
|
-
* Retrieves the S3 Access Grants instance for a Region in your account. Permissions You must have the s3:GetAccessGrantsInstance permission to use this operation.
|
280
|
+
* Retrieves the S3 Access Grants instance for a Region in your account. Permissions You must have the s3:GetAccessGrantsInstance permission to use this operation. GetAccessGrantsInstance is not supported for cross-account access. You can only call the API from the account that owns the S3 Access Grants instance.
|
281
281
|
*/
|
282
282
|
getAccessGrantsInstance(params: S3Control.Types.GetAccessGrantsInstanceRequest, callback?: (err: AWSError, data: S3Control.Types.GetAccessGrantsInstanceResult) => void): Request<S3Control.Types.GetAccessGrantsInstanceResult, AWSError>;
|
283
283
|
/**
|
284
|
-
* Retrieves the S3 Access Grants instance for a Region in your account. Permissions You must have the s3:GetAccessGrantsInstance permission to use this operation.
|
284
|
+
* Retrieves the S3 Access Grants instance for a Region in your account. Permissions You must have the s3:GetAccessGrantsInstance permission to use this operation. GetAccessGrantsInstance is not supported for cross-account access. You can only call the API from the account that owns the S3 Access Grants instance.
|
285
285
|
*/
|
286
286
|
getAccessGrantsInstance(callback?: (err: AWSError, data: S3Control.Types.GetAccessGrantsInstanceResult) => void): Request<S3Control.Types.GetAccessGrantsInstanceResult, AWSError>;
|
287
287
|
/**
|
@@ -532,6 +532,14 @@ declare class S3Control extends Service {
|
|
532
532
|
* This operation is not supported by directory buckets. Returns some or all (up to 1,000) access points associated with the Object Lambda Access Point per call. If there are more access points than what can be returned in one call, the response will include a continuation token that you can use to list the additional access points. The following actions are related to ListAccessPointsForObjectLambda: CreateAccessPointForObjectLambda DeleteAccessPointForObjectLambda GetAccessPointForObjectLambda
|
533
533
|
*/
|
534
534
|
listAccessPointsForObjectLambda(callback?: (err: AWSError, data: S3Control.Types.ListAccessPointsForObjectLambdaResult) => void): Request<S3Control.Types.ListAccessPointsForObjectLambdaResult, AWSError>;
|
535
|
+
/**
|
536
|
+
* Returns a list of the access grants that were given to the caller using S3 Access Grants and that allow the caller to access the S3 data of the Amazon Web Services account specified in the request. Permissions You must have the s3:ListCallerAccessGrants permission to use this operation.
|
537
|
+
*/
|
538
|
+
listCallerAccessGrants(params: S3Control.Types.ListCallerAccessGrantsRequest, callback?: (err: AWSError, data: S3Control.Types.ListCallerAccessGrantsResult) => void): Request<S3Control.Types.ListCallerAccessGrantsResult, AWSError>;
|
539
|
+
/**
|
540
|
+
* Returns a list of the access grants that were given to the caller using S3 Access Grants and that allow the caller to access the S3 data of the Amazon Web Services account specified in the request. Permissions You must have the s3:ListCallerAccessGrants permission to use this operation.
|
541
|
+
*/
|
542
|
+
listCallerAccessGrants(callback?: (err: AWSError, data: S3Control.Types.ListCallerAccessGrantsResult) => void): Request<S3Control.Types.ListCallerAccessGrantsResult, AWSError>;
|
535
543
|
/**
|
536
544
|
* Lists current S3 Batch Operations jobs as well as the jobs that have ended within the last 90 days for the Amazon Web Services account making the request. For more information, see S3 Batch Operations in the Amazon S3 User Guide. Permissions To use the ListJobs operation, you must have permission to perform the s3:ListJobs action. Related actions include: CreateJob DescribeJob UpdateJobPriority UpdateJobStatus
|
537
545
|
*/
|
@@ -788,7 +796,7 @@ declare namespace S3Control {
|
|
788
796
|
*/
|
789
797
|
NetworkOrigin: NetworkOrigin;
|
790
798
|
/**
|
791
|
-
* The virtual private cloud (VPC) configuration for this access point, if one exists. This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon Web
|
799
|
+
* The virtual private cloud (VPC) configuration for this access point, if one exists. This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon Web Servicesservices.
|
792
800
|
*/
|
793
801
|
VpcConfiguration?: VpcConfiguration;
|
794
802
|
/**
|
@@ -858,7 +866,7 @@ declare namespace S3Control {
|
|
858
866
|
export type Alias = string;
|
859
867
|
export interface AssociateAccessGrantsIdentityCenterRequest {
|
860
868
|
/**
|
861
|
-
* The
|
869
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
862
870
|
*/
|
863
871
|
AccountId: AccountId;
|
864
872
|
/**
|
@@ -979,6 +987,7 @@ declare namespace S3Control {
|
|
979
987
|
export type BucketName = string;
|
980
988
|
export type BucketVersioningStatus = "Enabled"|"Suspended"|string;
|
981
989
|
export type Buckets = S3BucketArnString[];
|
990
|
+
export type CallerAccessGrantsList = ListCallerAccessGrantsEntry[];
|
982
991
|
export interface CloudWatchMetrics {
|
983
992
|
/**
|
984
993
|
* A container that indicates whether CloudWatch publishing for S3 Storage Lens metrics is enabled. A value of true indicates that CloudWatch publishing for S3 Storage Lens metrics is enabled.
|
@@ -991,7 +1000,7 @@ declare namespace S3Control {
|
|
991
1000
|
export type ContinuationToken = string;
|
992
1001
|
export interface CreateAccessGrantRequest {
|
993
1002
|
/**
|
994
|
-
* The
|
1003
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
995
1004
|
*/
|
996
1005
|
AccountId: AccountId;
|
997
1006
|
/**
|
@@ -1063,7 +1072,7 @@ declare namespace S3Control {
|
|
1063
1072
|
}
|
1064
1073
|
export interface CreateAccessGrantsInstanceRequest {
|
1065
1074
|
/**
|
1066
|
-
* The
|
1075
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1067
1076
|
*/
|
1068
1077
|
AccountId: AccountId;
|
1069
1078
|
/**
|
@@ -1085,17 +1094,25 @@ declare namespace S3Control {
|
|
1085
1094
|
*/
|
1086
1095
|
AccessGrantsInstanceId?: AccessGrantsInstanceId;
|
1087
1096
|
/**
|
1088
|
-
* The Amazon Resource Name (ARN) of the S3 Access Grants instance.
|
1097
|
+
* The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs.
|
1089
1098
|
*/
|
1090
1099
|
AccessGrantsInstanceArn?: AccessGrantsInstanceArn;
|
1091
1100
|
/**
|
1092
|
-
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance
|
1101
|
+
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
|
1093
1102
|
*/
|
1094
1103
|
IdentityCenterArn?: IdentityCenterArn;
|
1104
|
+
/**
|
1105
|
+
* The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs.
|
1106
|
+
*/
|
1107
|
+
IdentityCenterInstanceArn?: IdentityCenterArn;
|
1108
|
+
/**
|
1109
|
+
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
|
1110
|
+
*/
|
1111
|
+
IdentityCenterApplicationArn?: IdentityCenterApplicationArn;
|
1095
1112
|
}
|
1096
1113
|
export interface CreateAccessGrantsLocationRequest {
|
1097
1114
|
/**
|
1098
|
-
* The
|
1115
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1099
1116
|
*/
|
1100
1117
|
AccountId: AccountId;
|
1101
1118
|
/**
|
@@ -1373,7 +1390,7 @@ declare namespace S3Control {
|
|
1373
1390
|
export type DaysAfterInitiation = number;
|
1374
1391
|
export interface DeleteAccessGrantRequest {
|
1375
1392
|
/**
|
1376
|
-
* The
|
1393
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1377
1394
|
*/
|
1378
1395
|
AccountId: AccountId;
|
1379
1396
|
/**
|
@@ -1383,19 +1400,19 @@ declare namespace S3Control {
|
|
1383
1400
|
}
|
1384
1401
|
export interface DeleteAccessGrantsInstanceRequest {
|
1385
1402
|
/**
|
1386
|
-
* The
|
1403
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1387
1404
|
*/
|
1388
1405
|
AccountId: AccountId;
|
1389
1406
|
}
|
1390
1407
|
export interface DeleteAccessGrantsInstanceResourcePolicyRequest {
|
1391
1408
|
/**
|
1392
|
-
* The
|
1409
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1393
1410
|
*/
|
1394
1411
|
AccountId: AccountId;
|
1395
1412
|
}
|
1396
1413
|
export interface DeleteAccessGrantsLocationRequest {
|
1397
1414
|
/**
|
1398
|
-
* The
|
1415
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1399
1416
|
*/
|
1400
1417
|
AccountId: AccountId;
|
1401
1418
|
/**
|
@@ -1646,7 +1663,7 @@ declare namespace S3Control {
|
|
1646
1663
|
}
|
1647
1664
|
export interface DissociateAccessGrantsIdentityCenterRequest {
|
1648
1665
|
/**
|
1649
|
-
* The
|
1666
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1650
1667
|
*/
|
1651
1668
|
AccountId: AccountId;
|
1652
1669
|
}
|
@@ -1699,7 +1716,7 @@ declare namespace S3Control {
|
|
1699
1716
|
export type GeneratedManifestFormat = "S3InventoryReport_CSV_20211130"|string;
|
1700
1717
|
export interface GetAccessGrantRequest {
|
1701
1718
|
/**
|
1702
|
-
* The
|
1719
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1703
1720
|
*/
|
1704
1721
|
AccountId: AccountId;
|
1705
1722
|
/**
|
@@ -1767,13 +1784,13 @@ declare namespace S3Control {
|
|
1767
1784
|
}
|
1768
1785
|
export interface GetAccessGrantsInstanceRequest {
|
1769
1786
|
/**
|
1770
|
-
* The
|
1787
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1771
1788
|
*/
|
1772
1789
|
AccountId: AccountId;
|
1773
1790
|
}
|
1774
1791
|
export interface GetAccessGrantsInstanceResourcePolicyRequest {
|
1775
1792
|
/**
|
1776
|
-
* The
|
1793
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1777
1794
|
*/
|
1778
1795
|
AccountId: AccountId;
|
1779
1796
|
}
|
@@ -1801,9 +1818,17 @@ declare namespace S3Control {
|
|
1801
1818
|
*/
|
1802
1819
|
AccessGrantsInstanceId?: AccessGrantsInstanceId;
|
1803
1820
|
/**
|
1804
|
-
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the
|
1821
|
+
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
|
1805
1822
|
*/
|
1806
1823
|
IdentityCenterArn?: IdentityCenterArn;
|
1824
|
+
/**
|
1825
|
+
* The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs.
|
1826
|
+
*/
|
1827
|
+
IdentityCenterInstanceArn?: IdentityCenterArn;
|
1828
|
+
/**
|
1829
|
+
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
|
1830
|
+
*/
|
1831
|
+
IdentityCenterApplicationArn?: IdentityCenterApplicationArn;
|
1807
1832
|
/**
|
1808
1833
|
* The date and time when you created the S3 Access Grants instance.
|
1809
1834
|
*/
|
@@ -1811,7 +1836,7 @@ declare namespace S3Control {
|
|
1811
1836
|
}
|
1812
1837
|
export interface GetAccessGrantsLocationRequest {
|
1813
1838
|
/**
|
1814
|
-
* The
|
1839
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
1815
1840
|
*/
|
1816
1841
|
AccountId: AccountId;
|
1817
1842
|
/**
|
@@ -1970,7 +1995,7 @@ declare namespace S3Control {
|
|
1970
1995
|
*/
|
1971
1996
|
NetworkOrigin?: NetworkOrigin;
|
1972
1997
|
/**
|
1973
|
-
* Contains the virtual private cloud (VPC) configuration for the specified access point. This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon Web
|
1998
|
+
* Contains the virtual private cloud (VPC) configuration for the specified access point. This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon Web Servicesservices.
|
1974
1999
|
*/
|
1975
2000
|
VpcConfiguration?: VpcConfiguration;
|
1976
2001
|
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
|
@@ -2105,7 +2130,7 @@ declare namespace S3Control {
|
|
2105
2130
|
}
|
2106
2131
|
export interface GetDataAccessRequest {
|
2107
2132
|
/**
|
2108
|
-
* The
|
2133
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
2109
2134
|
*/
|
2110
2135
|
AccountId: AccountId;
|
2111
2136
|
/**
|
@@ -2610,15 +2635,15 @@ declare namespace S3Control {
|
|
2610
2635
|
export type JobTotalNumberOfTasks = number;
|
2611
2636
|
export interface KeyNameConstraint {
|
2612
2637
|
/**
|
2613
|
-
* If provided, the generated manifest includes objects where the specified string appears at the start of the object key string.
|
2638
|
+
* If provided, the generated manifest includes objects where the specified string appears at the start of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.
|
2614
2639
|
*/
|
2615
2640
|
MatchAnyPrefix?: NonEmptyMaxLength1024StringList;
|
2616
2641
|
/**
|
2617
|
-
* If provided, the generated manifest includes objects where the specified string appears at the end of the object key string.
|
2642
|
+
* If provided, the generated manifest includes objects where the specified string appears at the end of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.
|
2618
2643
|
*/
|
2619
2644
|
MatchAnySuffix?: NonEmptyMaxLength1024StringList;
|
2620
2645
|
/**
|
2621
|
-
* If provided, the generated manifest includes objects where the specified string appears anywhere within the object key string.
|
2646
|
+
* If provided, the generated manifest includes objects where the specified string appears anywhere within the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.
|
2622
2647
|
*/
|
2623
2648
|
MatchAnySubstring?: NonEmptyMaxLength1024StringList;
|
2624
2649
|
}
|
@@ -2784,10 +2809,18 @@ declare namespace S3Control {
|
|
2784
2809
|
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
|
2785
2810
|
*/
|
2786
2811
|
IdentityCenterArn?: IdentityCenterArn;
|
2812
|
+
/**
|
2813
|
+
* The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs.
|
2814
|
+
*/
|
2815
|
+
IdentityCenterInstanceArn?: IdentityCenterArn;
|
2816
|
+
/**
|
2817
|
+
* If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
|
2818
|
+
*/
|
2819
|
+
IdentityCenterApplicationArn?: IdentityCenterApplicationArn;
|
2787
2820
|
}
|
2788
2821
|
export interface ListAccessGrantsInstancesRequest {
|
2789
2822
|
/**
|
2790
|
-
* The
|
2823
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
2791
2824
|
*/
|
2792
2825
|
AccountId: AccountId;
|
2793
2826
|
/**
|
@@ -2833,7 +2866,7 @@ declare namespace S3Control {
|
|
2833
2866
|
}
|
2834
2867
|
export interface ListAccessGrantsLocationsRequest {
|
2835
2868
|
/**
|
2836
|
-
* The
|
2869
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
2837
2870
|
*/
|
2838
2871
|
AccountId: AccountId;
|
2839
2872
|
/**
|
@@ -2861,7 +2894,7 @@ declare namespace S3Control {
|
|
2861
2894
|
}
|
2862
2895
|
export interface ListAccessGrantsRequest {
|
2863
2896
|
/**
|
2864
|
-
* The
|
2897
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
2865
2898
|
*/
|
2866
2899
|
AccountId: AccountId;
|
2867
2900
|
/**
|
@@ -2955,6 +2988,52 @@ declare namespace S3Control {
|
|
2955
2988
|
*/
|
2956
2989
|
NextToken?: NonEmptyMaxLength1024String;
|
2957
2990
|
}
|
2991
|
+
export interface ListCallerAccessGrantsEntry {
|
2992
|
+
/**
|
2993
|
+
* The type of permission granted, which can be one of the following values: READ - Grants read-only access to the S3 data. WRITE - Grants write-only access to the S3 data. READWRITE - Grants both read and write access to the S3 data.
|
2994
|
+
*/
|
2995
|
+
Permission?: Permission;
|
2996
|
+
/**
|
2997
|
+
* The S3 path of the data to which you have been granted access.
|
2998
|
+
*/
|
2999
|
+
GrantScope?: S3Prefix;
|
3000
|
+
/**
|
3001
|
+
* The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application.
|
3002
|
+
*/
|
3003
|
+
ApplicationArn?: IdentityCenterApplicationArn;
|
3004
|
+
}
|
3005
|
+
export interface ListCallerAccessGrantsRequest {
|
3006
|
+
/**
|
3007
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
3008
|
+
*/
|
3009
|
+
AccountId: AccountId;
|
3010
|
+
/**
|
3011
|
+
* The S3 path of the data that you would like to access. Must start with s3://. You can optionally pass only the beginning characters of a path, and S3 Access Grants will search for all applicable grants for the path fragment.
|
3012
|
+
*/
|
3013
|
+
GrantScope?: S3Prefix;
|
3014
|
+
/**
|
3015
|
+
* A pagination token to request the next page of results. Pass this value into a subsequent List Caller Access Grants request in order to retrieve the next page of results.
|
3016
|
+
*/
|
3017
|
+
NextToken?: ContinuationToken;
|
3018
|
+
/**
|
3019
|
+
* The maximum number of access grants that you would like returned in the List Caller Access Grants response. If the results include the pagination token NextToken, make another call using the NextToken to determine if there are more results.
|
3020
|
+
*/
|
3021
|
+
MaxResults?: MaxResults;
|
3022
|
+
/**
|
3023
|
+
* If this optional parameter is passed in the request, a filter is applied to the results. The results will include only the access grants for the caller's Identity Center application or for any other applications (ALL).
|
3024
|
+
*/
|
3025
|
+
AllowedByApplication?: Boolean;
|
3026
|
+
}
|
3027
|
+
export interface ListCallerAccessGrantsResult {
|
3028
|
+
/**
|
3029
|
+
* A pagination token that you can use to request the next page of results. Pass this value into a subsequent List Caller Access Grants request in order to retrieve the next page of results.
|
3030
|
+
*/
|
3031
|
+
NextToken?: ContinuationToken;
|
3032
|
+
/**
|
3033
|
+
* A list of the caller's access grants that were created using S3 Access Grants and that grant the caller access to the S3 data of the Amazon Web Services account ID that was specified in the request.
|
3034
|
+
*/
|
3035
|
+
CallerAccessGrantsList?: CallerAccessGrantsList;
|
3036
|
+
}
|
2958
3037
|
export interface ListJobsRequest {
|
2959
3038
|
/**
|
2960
3039
|
* The Amazon Web Services account ID associated with the S3 Batch Operations job.
|
@@ -3389,14 +3468,14 @@ declare namespace S3Control {
|
|
3389
3468
|
*/
|
3390
3469
|
BlockPublicPolicy?: Setting;
|
3391
3470
|
/**
|
3392
|
-
* Specifies whether Amazon S3 should restrict public bucket policies for buckets in this account. Setting this element to TRUE restricts access to buckets with public policies to only Amazon Web
|
3471
|
+
* Specifies whether Amazon S3 should restrict public bucket policies for buckets in this account. Setting this element to TRUE restricts access to buckets with public policies to only Amazon Web Servicesservice principals and authorized users within this account. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. This property is not supported for Amazon S3 on Outposts.
|
3393
3472
|
*/
|
3394
3473
|
RestrictPublicBuckets?: Setting;
|
3395
3474
|
}
|
3396
3475
|
export type PublicAccessBlockEnabled = boolean;
|
3397
3476
|
export interface PutAccessGrantsInstanceResourcePolicyRequest {
|
3398
3477
|
/**
|
3399
|
-
* The
|
3478
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
3400
3479
|
*/
|
3401
3480
|
AccountId: AccountId;
|
3402
3481
|
/**
|
@@ -3969,7 +4048,7 @@ declare namespace S3Control {
|
|
3969
4048
|
*/
|
3970
4049
|
ExpectedBucketOwner?: AccountId;
|
3971
4050
|
/**
|
3972
|
-
* The source bucket used by the ManifestGenerator. Directory buckets - Directory buckets aren't supported as the source buckets used by S3JobManifestGenerator to generate the job manifest.
|
4051
|
+
* The ARN of the source bucket used by the ManifestGenerator. Directory buckets - Directory buckets aren't supported as the source buckets used by S3JobManifestGenerator to generate the job manifest.
|
3973
4052
|
*/
|
3974
4053
|
SourceBucket: S3BucketArnString;
|
3975
4054
|
/**
|
@@ -4463,7 +4542,7 @@ declare namespace S3Control {
|
|
4463
4542
|
}
|
4464
4543
|
export interface UpdateAccessGrantsLocationRequest {
|
4465
4544
|
/**
|
4466
|
-
* The
|
4545
|
+
* The Amazon Web Services account ID of the S3 Access Grants instance.
|
4467
4546
|
*/
|
4468
4547
|
AccountId: AccountId;
|
4469
4548
|
/**
|