cdk-lambda-subminute 2.0.306 → 2.0.308
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/kinesis-2013-12-02.min.json +92 -21
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +112 -84
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +544 -533
- package/node_modules/aws-sdk/clients/kinesis.d.ts +96 -42
- package/node_modules/aws-sdk/clients/s3control.d.ts +35 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +13 -2
- 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 +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +96 -25
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +45 -45
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/s3.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -4
@@ -1885,17 +1885,33 @@ declare namespace S3Control {
|
|
1885
1885
|
*/
|
1886
1886
|
EligibleForReplication?: Boolean;
|
1887
1887
|
/**
|
1888
|
-
* If provided, the generated manifest
|
1888
|
+
* If provided, the generated manifest includes only source bucket objects that were created after this time.
|
1889
1889
|
*/
|
1890
1890
|
CreatedAfter?: ObjectCreationTime;
|
1891
1891
|
/**
|
1892
|
-
* If provided, the generated manifest
|
1892
|
+
* If provided, the generated manifest includes only source bucket objects that were created before this time.
|
1893
1893
|
*/
|
1894
1894
|
CreatedBefore?: ObjectCreationTime;
|
1895
1895
|
/**
|
1896
|
-
* If provided, the generated manifest
|
1896
|
+
* If provided, the generated manifest includes only source bucket objects that have one of the specified Replication statuses.
|
1897
1897
|
*/
|
1898
1898
|
ObjectReplicationStatuses?: ReplicationStatusFilterList;
|
1899
|
+
/**
|
1900
|
+
* If provided, the generated manifest includes only source bucket objects whose object keys match the string constraints specified for MatchAnyPrefix, MatchAnySuffix, and MatchAnySubstring.
|
1901
|
+
*/
|
1902
|
+
KeyNameConstraint?: KeyNameConstraint;
|
1903
|
+
/**
|
1904
|
+
* If provided, the generated manifest includes only source bucket objects whose file size is greater than the specified number of bytes.
|
1905
|
+
*/
|
1906
|
+
ObjectSizeGreaterThanBytes?: ObjectSizeGreaterThanBytes;
|
1907
|
+
/**
|
1908
|
+
* If provided, the generated manifest includes only source bucket objects whose file size is less than the specified number of bytes.
|
1909
|
+
*/
|
1910
|
+
ObjectSizeLessThanBytes?: ObjectSizeLessThanBytes;
|
1911
|
+
/**
|
1912
|
+
* If provided, the generated manifest includes only source bucket objects that are stored with the specified storage class.
|
1913
|
+
*/
|
1914
|
+
MatchAnyStorageClass?: StorageClassList;
|
1899
1915
|
}
|
1900
1916
|
export interface JobManifestLocation {
|
1901
1917
|
/**
|
@@ -2010,6 +2026,20 @@ declare namespace S3Control {
|
|
2010
2026
|
ElapsedTimeInActiveSeconds?: JobTimeInStateSeconds;
|
2011
2027
|
}
|
2012
2028
|
export type JobTotalNumberOfTasks = number;
|
2029
|
+
export interface KeyNameConstraint {
|
2030
|
+
/**
|
2031
|
+
* If provided, the generated manifest includes objects where the specified string appears at the start of the object key string.
|
2032
|
+
*/
|
2033
|
+
MatchAnyPrefix?: NonEmptyMaxLength1024StringList;
|
2034
|
+
/**
|
2035
|
+
* If provided, the generated manifest includes objects where the specified string appears at the end of the object key string.
|
2036
|
+
*/
|
2037
|
+
MatchAnySuffix?: NonEmptyMaxLength1024StringList;
|
2038
|
+
/**
|
2039
|
+
* If provided, the generated manifest includes objects where the specified string appears anywhere within the object key string.
|
2040
|
+
*/
|
2041
|
+
MatchAnySubstring?: NonEmptyMaxLength1024StringList;
|
2042
|
+
}
|
2013
2043
|
export type KmsKeyArnString = string;
|
2014
2044
|
export interface LambdaInvokeOperation {
|
2015
2045
|
/**
|
@@ -2444,6 +2474,7 @@ declare namespace S3Control {
|
|
2444
2474
|
}
|
2445
2475
|
export type NetworkOrigin = "Internet"|"VPC"|string;
|
2446
2476
|
export type NonEmptyMaxLength1024String = string;
|
2477
|
+
export type NonEmptyMaxLength1024StringList = NonEmptyMaxLength1024String[];
|
2447
2478
|
export type NonEmptyMaxLength2048String = string;
|
2448
2479
|
export type NonEmptyMaxLength256String = string;
|
2449
2480
|
export type NonEmptyMaxLength64String = string;
|
@@ -3354,6 +3385,7 @@ declare namespace S3Control {
|
|
3354
3385
|
Status: SseKmsEncryptedObjectsStatus;
|
3355
3386
|
}
|
3356
3387
|
export type SseKmsEncryptedObjectsStatus = "Enabled"|"Disabled"|string;
|
3388
|
+
export type StorageClassList = S3StorageClass[];
|
3357
3389
|
export type StorageLensArn = string;
|
3358
3390
|
export interface StorageLensAwsOrg {
|
3359
3391
|
/**
|
@@ -2551,6 +2551,7 @@ declare class SageMaker extends Service {
|
|
2551
2551
|
}
|
2552
2552
|
declare namespace SageMaker {
|
2553
2553
|
export type Accept = string;
|
2554
|
+
export type AcceptEula = boolean;
|
2554
2555
|
export type AccountId = string;
|
2555
2556
|
export type ActionArn = string;
|
2556
2557
|
export interface ActionSource {
|
@@ -7775,7 +7776,7 @@ declare namespace SageMaker {
|
|
7775
7776
|
*/
|
7776
7777
|
SingleSignOnManagedApplicationInstanceId?: String256;
|
7777
7778
|
/**
|
7778
|
-
* The ARN of the
|
7779
|
+
* The ARN of the application managed by SageMaker in IAM Identity Center. This value is only returned for domains created after September 19, 2023.
|
7779
7780
|
*/
|
7780
7781
|
SingleSignOnApplicationArn?: SingleSignOnApplicationArn;
|
7781
7782
|
/**
|
@@ -16512,6 +16513,12 @@ declare namespace SageMaker {
|
|
16512
16513
|
*/
|
16513
16514
|
DeploymentRecommendation?: DeploymentRecommendation;
|
16514
16515
|
}
|
16516
|
+
export interface ModelAccessConfig {
|
16517
|
+
/**
|
16518
|
+
* Specifies agreement to the model end-user license agreement (EULA). The AcceptEula value must be explicitly defined as True in order to accept the EULA that this model requires. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
|
16519
|
+
*/
|
16520
|
+
AcceptEula: AcceptEula;
|
16521
|
+
}
|
16515
16522
|
export type ModelApprovalStatus = "Approved"|"Rejected"|"PendingManualApproval"|string;
|
16516
16523
|
export type ModelArn = string;
|
16517
16524
|
export interface ModelArtifacts {
|
@@ -20026,6 +20033,10 @@ declare namespace SageMaker {
|
|
20026
20033
|
* Specifies how the ML model data is prepared. If you choose Gzip and choose S3Object as the value of S3DataType, S3Uri identifies an object that is a gzip-compressed TAR archive. SageMaker will attempt to decompress and untar the object during model deployment. If you choose None and chooose S3Object as the value of S3DataType, S3Uri identifies an object that represents an uncompressed ML model to deploy. If you choose None and choose S3Prefix as the value of S3DataType, S3Uri identifies a key name prefix, under which all objects represents the uncompressed ML model to deploy. If you choose None, then SageMaker will follow rules below when creating model data files under /opt/ml/model directory for use by your inference code: If you choose S3Object as the value of S3DataType, then SageMaker will split the key of the S3 object referenced by S3Uri by slash (/), and use the last part as the filename of the file holding the content of the S3 object. If you choose S3Prefix as the value of S3DataType, then for each S3 object under the key name pefix referenced by S3Uri, SageMaker will trim its key by the prefix, and use the remainder as the path (relative to /opt/ml/model) of the file holding the content of the S3 object. SageMaker will split the remainder by slash (/), using intermediate parts as directory names and the last part as filename of the file holding the content of the S3 object. Do not use any of the following as file names or directory names: An empty or blank string A string which contains null bytes A string longer than 255 bytes A single dot (.) A double dot (..) Ambiguous file names will result in model deployment failure. For example, if your uncompressed ML model consists of two S3 objects s3://mybucket/model/weights and s3://mybucket/model/weights/part1 and you specify s3://mybucket/model/ as the value of S3Uri and S3Prefix as the value of S3DataType, then it will result in name clash between /opt/ml/model/weights (a regular file) and /opt/ml/model/weights/ (a directory). Do not organize the model artifacts in S3 console using folders. When you create a folder in S3 console, S3 creates a 0-byte object with a key set to the folder name you provide. They key of the 0-byte object ends with a slash (/) which violates SageMaker restrictions on model artifact file names, leading to model deployment failure.
|
20027
20034
|
*/
|
20028
20035
|
CompressionType: ModelCompressionType;
|
20036
|
+
/**
|
20037
|
+
* Specifies the access configuration file for the ML model. You can explicitly accept the model end-user license agreement (EULA) within the ModelAccessConfig. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
|
20038
|
+
*/
|
20039
|
+
ModelAccessConfig?: ModelAccessConfig;
|
20029
20040
|
}
|
20030
20041
|
export type S3ModelDataType = "S3Prefix"|"S3Object"|string;
|
20031
20042
|
export type S3ModelUri = string;
|
@@ -20663,7 +20674,7 @@ declare namespace SageMaker {
|
|
20663
20674
|
*/
|
20664
20675
|
MaxWaitTimeInSeconds?: MaxWaitTimeInSeconds;
|
20665
20676
|
/**
|
20666
|
-
* The maximum
|
20677
|
+
* The maximum length of time, in seconds, that a training or compilation job can be pending before it is stopped.
|
20667
20678
|
*/
|
20668
20679
|
MaxPendingTimeInSeconds?: MaxPendingTimeInSeconds;
|
20669
20680
|
}
|