cdk-comprehend-s3olap 2.0.231 → 2.0.232
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 +4 -4
- 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 +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +60 -16
- package/node_modules/aws-sdk/apis/dms-2016-01-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +37 -19
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +12 -0
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +220 -115
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +571 -556
- package/node_modules/aws-sdk/clients/batch.d.ts +9 -9
- package/node_modules/aws-sdk/clients/dms.d.ts +65 -1
- package/node_modules/aws-sdk/clients/internetmonitor.d.ts +49 -26
- package/node_modules/aws-sdk/clients/medialive.d.ts +16 -0
- package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +173 -8
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +33 -8
- 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 +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +223 -118
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +31 -31
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -277,6 +277,14 @@ declare class RDS extends Service {
|
|
277
277
|
* The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted. If you're deleting a Multi-AZ DB cluster with read replicas, all cluster members are terminated and read replicas are promoted to standalone instances. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
|
278
278
|
*/
|
279
279
|
deleteDBCluster(callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterResult) => void): Request<RDS.Types.DeleteDBClusterResult, AWSError>;
|
280
|
+
/**
|
281
|
+
* Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.
|
282
|
+
*/
|
283
|
+
deleteDBClusterAutomatedBackup(params: RDS.Types.DeleteDBClusterAutomatedBackupMessage, callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterAutomatedBackupResult) => void): Request<RDS.Types.DeleteDBClusterAutomatedBackupResult, AWSError>;
|
284
|
+
/**
|
285
|
+
* Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.
|
286
|
+
*/
|
287
|
+
deleteDBClusterAutomatedBackup(callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterAutomatedBackupResult) => void): Request<RDS.Types.DeleteDBClusterAutomatedBackupResult, AWSError>;
|
280
288
|
/**
|
281
289
|
* Deletes a custom endpoint and removes it from an Amazon Aurora DB cluster. This action only applies to Aurora DB clusters.
|
282
290
|
*/
|
@@ -421,6 +429,14 @@ declare class RDS extends Service {
|
|
421
429
|
* Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
|
422
430
|
*/
|
423
431
|
describeCertificates(callback?: (err: AWSError, data: RDS.Types.CertificateMessage) => void): Request<RDS.Types.CertificateMessage, AWSError>;
|
432
|
+
/**
|
433
|
+
* Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations. All parameters are optional.
|
434
|
+
*/
|
435
|
+
describeDBClusterAutomatedBackups(params: RDS.Types.DescribeDBClusterAutomatedBackupsMessage, callback?: (err: AWSError, data: RDS.Types.DBClusterAutomatedBackupMessage) => void): Request<RDS.Types.DBClusterAutomatedBackupMessage, AWSError>;
|
436
|
+
/**
|
437
|
+
* Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations. All parameters are optional.
|
438
|
+
*/
|
439
|
+
describeDBClusterAutomatedBackups(callback?: (err: AWSError, data: RDS.Types.DBClusterAutomatedBackupMessage) => void): Request<RDS.Types.DBClusterAutomatedBackupMessage, AWSError>;
|
424
440
|
/**
|
425
441
|
* Returns information about backtracks for a DB cluster. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This action only applies to Aurora MySQL DB clusters.
|
426
442
|
*/
|
@@ -3017,6 +3033,108 @@ declare namespace RDS {
|
|
3017
3033
|
*/
|
3018
3034
|
LocalWriteForwardingStatus?: LocalWriteForwardingStatus;
|
3019
3035
|
}
|
3036
|
+
export interface DBClusterAutomatedBackup {
|
3037
|
+
/**
|
3038
|
+
* The name of the database engine for this automated backup.
|
3039
|
+
*/
|
3040
|
+
Engine?: String;
|
3041
|
+
/**
|
3042
|
+
* The VPC ID associated with the DB cluster.
|
3043
|
+
*/
|
3044
|
+
VpcId?: String;
|
3045
|
+
/**
|
3046
|
+
* The Amazon Resource Name (ARN) for the automated backups.
|
3047
|
+
*/
|
3048
|
+
DBClusterAutomatedBackupsArn?: String;
|
3049
|
+
/**
|
3050
|
+
* The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
3051
|
+
*/
|
3052
|
+
DBClusterIdentifier?: String;
|
3053
|
+
RestoreWindow?: RestoreWindow;
|
3054
|
+
/**
|
3055
|
+
* The master user name of the automated backup.
|
3056
|
+
*/
|
3057
|
+
MasterUsername?: String;
|
3058
|
+
/**
|
3059
|
+
* The resource ID for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
3060
|
+
*/
|
3061
|
+
DbClusterResourceId?: String;
|
3062
|
+
/**
|
3063
|
+
* The Amazon Web Services Region associated with the automated backup.
|
3064
|
+
*/
|
3065
|
+
Region?: String;
|
3066
|
+
/**
|
3067
|
+
* The license model information for this DB cluster automated backup.
|
3068
|
+
*/
|
3069
|
+
LicenseModel?: String;
|
3070
|
+
/**
|
3071
|
+
* A list of status information for an automated backup: retained - Automated backups for deleted clusters.
|
3072
|
+
*/
|
3073
|
+
Status?: String;
|
3074
|
+
/**
|
3075
|
+
* True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
|
3076
|
+
*/
|
3077
|
+
IAMDatabaseAuthenticationEnabled?: Boolean;
|
3078
|
+
/**
|
3079
|
+
* The time when the DB cluster was created, in Universal Coordinated Time (UTC).
|
3080
|
+
*/
|
3081
|
+
ClusterCreateTime?: TStamp;
|
3082
|
+
/**
|
3083
|
+
* Specifies whether the source DB cluster is encrypted.
|
3084
|
+
*/
|
3085
|
+
StorageEncrypted?: Boolean;
|
3086
|
+
/**
|
3087
|
+
* For all database engines except Amazon Aurora, AllocatedStorage specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.
|
3088
|
+
*/
|
3089
|
+
AllocatedStorage?: Integer;
|
3090
|
+
/**
|
3091
|
+
* The version of the database engine for the automated backup.
|
3092
|
+
*/
|
3093
|
+
EngineVersion?: String;
|
3094
|
+
/**
|
3095
|
+
* The Amazon Resource Name (ARN) for the source DB cluster.
|
3096
|
+
*/
|
3097
|
+
DBClusterArn?: String;
|
3098
|
+
/**
|
3099
|
+
* The retention period for the automated backups.
|
3100
|
+
*/
|
3101
|
+
BackupRetentionPeriod?: IntegerOptional;
|
3102
|
+
/**
|
3103
|
+
* The engine mode of the database engine for the automated backup.
|
3104
|
+
*/
|
3105
|
+
EngineMode?: String;
|
3106
|
+
/**
|
3107
|
+
* The Availability Zones where instances in the DB cluster can be created. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.
|
3108
|
+
*/
|
3109
|
+
AvailabilityZones?: AvailabilityZones;
|
3110
|
+
/**
|
3111
|
+
* The port number that the automated backup used for connections. Default: Inherits from the source DB cluster Valid Values: 1150-65535
|
3112
|
+
*/
|
3113
|
+
Port?: Integer;
|
3114
|
+
/**
|
3115
|
+
* The Amazon Web Services KMS key ID for an automated backup. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
|
3116
|
+
*/
|
3117
|
+
KmsKeyId?: String;
|
3118
|
+
/**
|
3119
|
+
* The storage type associated with the DB cluster. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3120
|
+
*/
|
3121
|
+
StorageType?: String;
|
3122
|
+
/**
|
3123
|
+
* The IOPS (I/O operations per second) value for the automated backup. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3124
|
+
*/
|
3125
|
+
Iops?: IntegerOptional;
|
3126
|
+
}
|
3127
|
+
export type DBClusterAutomatedBackupList = DBClusterAutomatedBackup[];
|
3128
|
+
export interface DBClusterAutomatedBackupMessage {
|
3129
|
+
/**
|
3130
|
+
* The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
|
3131
|
+
*/
|
3132
|
+
Marker?: String;
|
3133
|
+
/**
|
3134
|
+
* A list of DBClusterAutomatedBackup backups.
|
3135
|
+
*/
|
3136
|
+
DBClusterAutomatedBackups?: DBClusterAutomatedBackupList;
|
3137
|
+
}
|
3020
3138
|
export interface DBClusterBacktrack {
|
3021
3139
|
/**
|
3022
3140
|
* Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
|
@@ -3305,7 +3423,7 @@ declare namespace RDS {
|
|
3305
3423
|
*/
|
3306
3424
|
KmsKeyId?: String;
|
3307
3425
|
/**
|
3308
|
-
*
|
3426
|
+
* Specifies the Amazon Resource Name (ARN) for the DB cluster snapshot.
|
3309
3427
|
*/
|
3310
3428
|
DBClusterSnapshotArn?: String;
|
3311
3429
|
/**
|
@@ -3325,6 +3443,10 @@ declare namespace RDS {
|
|
3325
3443
|
* The storage type associated with the DB cluster snapshot. This setting is only for Aurora DB clusters.
|
3326
3444
|
*/
|
3327
3445
|
StorageType?: String;
|
3446
|
+
/**
|
3447
|
+
* Specifies the resource ID of the DB cluster that this DB cluster snapshot was created from.
|
3448
|
+
*/
|
3449
|
+
DbClusterResourceId?: String;
|
3328
3450
|
}
|
3329
3451
|
export interface DBClusterSnapshotAttribute {
|
3330
3452
|
/**
|
@@ -3829,7 +3951,7 @@ declare namespace RDS {
|
|
3829
3951
|
*/
|
3830
3952
|
DBInstanceArn?: String;
|
3831
3953
|
/**
|
3832
|
-
* The
|
3954
|
+
* The resource ID for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
|
3833
3955
|
*/
|
3834
3956
|
DbiResourceId?: String;
|
3835
3957
|
/**
|
@@ -3837,7 +3959,7 @@ declare namespace RDS {
|
|
3837
3959
|
*/
|
3838
3960
|
Region?: String;
|
3839
3961
|
/**
|
3840
|
-
* The
|
3962
|
+
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
|
3841
3963
|
*/
|
3842
3964
|
DBInstanceIdentifier?: String;
|
3843
3965
|
/**
|
@@ -3849,7 +3971,7 @@ declare namespace RDS {
|
|
3849
3971
|
*/
|
3850
3972
|
AllocatedStorage?: Integer;
|
3851
3973
|
/**
|
3852
|
-
* Provides a list of status information for an automated backup: active -
|
3974
|
+
* Provides a list of status information for an automated backup: active - Automated backups for current instances. retained - Automated backups for deleted instances. creating - Automated backups that are waiting for the first automated snapshot to be available.
|
3853
3975
|
*/
|
3854
3976
|
Status?: String;
|
3855
3977
|
/**
|
@@ -3869,7 +3991,7 @@ declare namespace RDS {
|
|
3869
3991
|
*/
|
3870
3992
|
InstanceCreateTime?: TStamp;
|
3871
3993
|
/**
|
3872
|
-
* The
|
3994
|
+
* The master user name of an automated backup.
|
3873
3995
|
*/
|
3874
3996
|
MasterUsername?: String;
|
3875
3997
|
/**
|
@@ -4524,6 +4646,15 @@ declare namespace RDS {
|
|
4524
4646
|
*/
|
4525
4647
|
EngineVersion: CustomEngineVersion;
|
4526
4648
|
}
|
4649
|
+
export interface DeleteDBClusterAutomatedBackupMessage {
|
4650
|
+
/**
|
4651
|
+
* The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
4652
|
+
*/
|
4653
|
+
DbClusterResourceId: String;
|
4654
|
+
}
|
4655
|
+
export interface DeleteDBClusterAutomatedBackupResult {
|
4656
|
+
DBClusterAutomatedBackup?: DBClusterAutomatedBackup;
|
4657
|
+
}
|
4527
4658
|
export interface DeleteDBClusterEndpointMessage {
|
4528
4659
|
/**
|
4529
4660
|
* The identifier associated with the custom endpoint. This parameter is stored as a lowercase string.
|
@@ -4543,6 +4674,10 @@ declare namespace RDS {
|
|
4543
4674
|
* The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled. Specifying this parameter and also skipping the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter results in an error. Constraints: Must be 1 to 255 letters, numbers, or hyphens. First character must be a letter Can't end with a hyphen or contain two consecutive hyphens
|
4544
4675
|
*/
|
4545
4676
|
FinalDBSnapshotIdentifier?: String;
|
4677
|
+
/**
|
4678
|
+
* A value that indicates whether to remove automated backups immediately after the DB cluster is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted.
|
4679
|
+
*/
|
4680
|
+
DeleteAutomatedBackups?: BooleanOptional;
|
4546
4681
|
}
|
4547
4682
|
export interface DeleteDBClusterParameterGroupMessage {
|
4548
4683
|
/**
|
@@ -4739,6 +4874,28 @@ declare namespace RDS {
|
|
4739
4874
|
*/
|
4740
4875
|
Marker?: String;
|
4741
4876
|
}
|
4877
|
+
export interface DescribeDBClusterAutomatedBackupsMessage {
|
4878
|
+
/**
|
4879
|
+
* The resource ID of the DB cluster that is the source of the automated backup. This parameter isn't case-sensitive.
|
4880
|
+
*/
|
4881
|
+
DbClusterResourceId?: String;
|
4882
|
+
/**
|
4883
|
+
* (Optional) The user-supplied DB cluster identifier. If this parameter is specified, it must match the identifier of an existing DB cluster. It returns information from the specific DB cluster's automated backup. This parameter isn't case-sensitive.
|
4884
|
+
*/
|
4885
|
+
DBClusterIdentifier?: String;
|
4886
|
+
/**
|
4887
|
+
* A filter that specifies which resources to return based on status. Supported filters are the following: status retained - Automated backups for deleted clusters and after backup replication is stopped. db-cluster-id - Accepts DB cluster identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster automated backups identified by these ARNs. db-cluster-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster resources identified by these ARNs. Returns all resources by default. The status for each resource is specified in the response.
|
4888
|
+
*/
|
4889
|
+
Filters?: FilterList;
|
4890
|
+
/**
|
4891
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.
|
4892
|
+
*/
|
4893
|
+
MaxRecords?: IntegerOptional;
|
4894
|
+
/**
|
4895
|
+
* The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
|
4896
|
+
*/
|
4897
|
+
Marker?: String;
|
4898
|
+
}
|
4742
4899
|
export interface DescribeDBClusterBacktracksMessage {
|
4743
4900
|
/**
|
4744
4901
|
* The DB cluster identifier of the DB cluster to be described. This parameter is stored as a lowercase string. Constraints: Must contain from 1 to 63 alphanumeric characters or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens. Example: my-cluster1
|
@@ -4865,6 +5022,10 @@ declare namespace RDS {
|
|
4865
5022
|
* A value that indicates whether to include manual DB cluster snapshots that are public and can be copied or restored by any Amazon Web Services account. By default, the public snapshots are not included. You can share a manual DB cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute API action.
|
4866
5023
|
*/
|
4867
5024
|
IncludePublic?: Boolean;
|
5025
|
+
/**
|
5026
|
+
* A specific DB cluster resource ID to describe.
|
5027
|
+
*/
|
5028
|
+
DbClusterResourceId?: String;
|
4868
5029
|
}
|
4869
5030
|
export interface DescribeDBClustersMessage {
|
4870
5031
|
/**
|
@@ -4936,11 +5097,11 @@ declare namespace RDS {
|
|
4936
5097
|
*/
|
4937
5098
|
DbiResourceId?: String;
|
4938
5099
|
/**
|
4939
|
-
* (Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance' automated backup. This parameter isn't case-sensitive.
|
5100
|
+
* (Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance's automated backup. This parameter isn't case-sensitive.
|
4940
5101
|
*/
|
4941
5102
|
DBInstanceIdentifier?: String;
|
4942
5103
|
/**
|
4943
|
-
* A filter that specifies which resources to return based on status. Supported filters are the following: status active -
|
5104
|
+
* A filter that specifies which resources to return based on status. Supported filters are the following: status active - Automated backups for current instances. creating - Automated backups that are waiting for the first automated snapshot to be available. retained - Automated backups for deleted instances and after backup replication is stopped. db-instance-id - Accepts DB instance identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance automated backups identified by these ARNs. dbi-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance resources identified by these ARNs. Returns all resources by default. The status for each resource is specified in the response.
|
4944
5105
|
*/
|
4945
5106
|
Filters?: FilterList;
|
4946
5107
|
/**
|
@@ -8170,7 +8331,7 @@ declare namespace RDS {
|
|
8170
8331
|
/**
|
8171
8332
|
* The identifier of the source DB cluster from which to restore. Constraints: Must match the identifier of an existing DBCluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
8172
8333
|
*/
|
8173
|
-
SourceDBClusterIdentifier
|
8334
|
+
SourceDBClusterIdentifier?: String;
|
8174
8335
|
/**
|
8175
8336
|
* The date and time to restore the DB cluster to. Valid Values: Value must be a time in Universal Coordinated Time (UTC) format Constraints: Must be before the latest restorable time for the DB instance Must be specified if UseLatestRestorableTime parameter isn't provided Can't be specified if the UseLatestRestorableTime parameter is enabled Can't be specified if the RestoreType parameter is copy-on-write Example: 2015-03-07T23:45:00Z Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
8176
8337
|
*/
|
@@ -8261,6 +8422,10 @@ declare namespace RDS {
|
|
8261
8422
|
* The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
|
8262
8423
|
*/
|
8263
8424
|
NetworkType?: String;
|
8425
|
+
/**
|
8426
|
+
* The resource ID of the source DB cluster from which to restore.
|
8427
|
+
*/
|
8428
|
+
SourceDbClusterResourceId?: String;
|
8264
8429
|
}
|
8265
8430
|
export interface RestoreDBClusterToPointInTimeResult {
|
8266
8431
|
DBCluster?: DBCluster;
|
@@ -3549,7 +3549,7 @@ declare namespace SageMaker {
|
|
3549
3549
|
*/
|
3550
3550
|
StartTimeOffset?: MonitoringTimeOffsetString;
|
3551
3551
|
/**
|
3552
|
-
* If specified, monitoring jobs
|
3552
|
+
* If specified, monitoring jobs subtract this time from the end time. For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs.
|
3553
3553
|
*/
|
3554
3554
|
EndTimeOffset?: MonitoringTimeOffsetString;
|
3555
3555
|
}
|
@@ -7948,7 +7948,7 @@ declare namespace SageMaker {
|
|
7948
7948
|
ProductionVariants?: ProductionVariantSummaryList;
|
7949
7949
|
DataCaptureConfig?: DataCaptureConfigSummary;
|
7950
7950
|
/**
|
7951
|
-
* The status of the endpoint. OutOfService: Endpoint is not available to take incoming requests. Creating: CreateEndpoint is executing. Updating: UpdateEndpoint or UpdateEndpointWeightsAndCapacities is executing. SystemUpdating: Endpoint is undergoing maintenance and cannot be updated or deleted or re-scaled until it has completed. This maintenance operation does not change any customer-specified values such as VPC config, KMS encryption, model, instance type, or instance count. RollingBack: Endpoint fails to scale up or down or change its variant weight and is in the process of rolling back to its previous configuration. Once the rollback completes, endpoint returns to an InService status. This transitional status only applies to an endpoint that has autoscaling enabled and is undergoing variant weight or capacity changes as part of an UpdateEndpointWeightsAndCapacities call or when the UpdateEndpointWeightsAndCapacities operation is called explicitly. InService: Endpoint is available to process incoming requests. Deleting: DeleteEndpoint is executing. Failed: Endpoint could not be created, updated, or re-scaled. Use the FailureReason value returned by DescribeEndpoint for information about the failure. DeleteEndpoint is the only operation that can be performed on a failed endpoint.
|
7951
|
+
* The status of the endpoint. OutOfService: Endpoint is not available to take incoming requests. Creating: CreateEndpoint is executing. Updating: UpdateEndpoint or UpdateEndpointWeightsAndCapacities is executing. SystemUpdating: Endpoint is undergoing maintenance and cannot be updated or deleted or re-scaled until it has completed. This maintenance operation does not change any customer-specified values such as VPC config, KMS encryption, model, instance type, or instance count. RollingBack: Endpoint fails to scale up or down or change its variant weight and is in the process of rolling back to its previous configuration. Once the rollback completes, endpoint returns to an InService status. This transitional status only applies to an endpoint that has autoscaling enabled and is undergoing variant weight or capacity changes as part of an UpdateEndpointWeightsAndCapacities call or when the UpdateEndpointWeightsAndCapacities operation is called explicitly. InService: Endpoint is available to process incoming requests. Deleting: DeleteEndpoint is executing. Failed: Endpoint could not be created, updated, or re-scaled. Use the FailureReason value returned by DescribeEndpoint for information about the failure. DeleteEndpoint is the only operation that can be performed on a failed endpoint. UpdateRollbackFailed: Both the rolling deployment and auto-rollback failed. Your endpoint is in service with a mix of the old and new endpoint configurations. For information about how to remedy this issue and restore the endpoint's status to InService, see Rolling Deployments.
|
7952
7952
|
*/
|
7953
7953
|
EndpointStatus: EndpointStatus;
|
7954
7954
|
/**
|
@@ -11379,6 +11379,7 @@ declare namespace SageMaker {
|
|
11379
11379
|
Value: MetricValue;
|
11380
11380
|
}
|
11381
11381
|
export type FinalMetricDataList = MetricData[];
|
11382
|
+
export type FlatInvocations = "Continue"|"Stop"|string;
|
11382
11383
|
export type Float = number;
|
11383
11384
|
export type FlowDefinitionArn = string;
|
11384
11385
|
export type FlowDefinitionName = string;
|
@@ -16731,7 +16732,7 @@ declare namespace SageMaker {
|
|
16731
16732
|
export type ModelInsightsLocation = string;
|
16732
16733
|
export interface ModelLatencyThreshold {
|
16733
16734
|
/**
|
16734
|
-
* The model latency percentile threshold.
|
16735
|
+
* The model latency percentile threshold. For custom load tests, specify the value as P95.
|
16735
16736
|
*/
|
16736
16737
|
Percentile?: String64;
|
16737
16738
|
/**
|
@@ -17795,6 +17796,7 @@ declare namespace SageMaker {
|
|
17795
17796
|
}
|
17796
17797
|
export type NotificationTopicArn = string;
|
17797
17798
|
export type NumberOfHumanWorkersPerDataObject = number;
|
17799
|
+
export type NumberOfSteps = number;
|
17798
17800
|
export type ObjectiveStatus = "Succeeded"|"Pending"|"Failed"|string;
|
17799
17801
|
export type ObjectiveStatusCounter = number;
|
17800
17802
|
export interface ObjectiveStatusCounters {
|
@@ -18132,7 +18134,7 @@ declare namespace SageMaker {
|
|
18132
18134
|
export type Percentage = number;
|
18133
18135
|
export interface Phase {
|
18134
18136
|
/**
|
18135
|
-
* Specifies how many concurrent users to start with.
|
18137
|
+
* Specifies how many concurrent users to start with. The value should be between 1 and 3.
|
18136
18138
|
*/
|
18137
18139
|
InitialNumberOfUsers?: InitialNumberOfUsers;
|
18138
18140
|
/**
|
@@ -18140,7 +18142,7 @@ declare namespace SageMaker {
|
|
18140
18142
|
*/
|
18141
18143
|
SpawnRate?: SpawnRate;
|
18142
18144
|
/**
|
18143
|
-
* Specifies how long traffic phase should be.
|
18145
|
+
* Specifies how long a traffic phase should be. For custom load tests, the value should be between 120 and 3600. This value should not exceed JobDurationInSeconds.
|
18144
18146
|
*/
|
18145
18147
|
DurationInSeconds?: TrafficDurationInSeconds;
|
18146
18148
|
}
|
@@ -19340,7 +19342,7 @@ declare namespace SageMaker {
|
|
19340
19342
|
*/
|
19341
19343
|
ModelPackageVersionArn?: ModelPackageArn;
|
19342
19344
|
/**
|
19343
|
-
* Specifies the maximum duration of the job, in seconds
|
19345
|
+
* Specifies the maximum duration of the job, in seconds. The maximum value is 7200.
|
19344
19346
|
*/
|
19345
19347
|
JobDurationInSeconds?: JobDurationInSeconds;
|
19346
19348
|
/**
|
@@ -19417,6 +19419,10 @@ declare namespace SageMaker {
|
|
19417
19419
|
* The interval of time taken by a model to respond as viewed from SageMaker. The interval includes the local communication time taken to send the request and to fetch the response from the container of a model and the time taken to complete the inference in the container.
|
19418
19420
|
*/
|
19419
19421
|
ModelLatencyThresholds?: ModelLatencyThresholds;
|
19422
|
+
/**
|
19423
|
+
* Stops a load test when the number of invocations (TPS) peaks and flattens, which means that the instance has reached capacity. The default value is Stop. If you want the load test to continue after invocations have flattened, set the value to Continue.
|
19424
|
+
*/
|
19425
|
+
FlatInvocations?: FlatInvocations;
|
19420
19426
|
}
|
19421
19427
|
export type RecommendationJobSupportedContentTypes = String[];
|
19422
19428
|
export type RecommendationJobSupportedEndpointType = "RealTime"|"Serverless"|string;
|
@@ -20146,6 +20152,20 @@ declare namespace SageMaker {
|
|
20146
20152
|
export type SpawnRate = number;
|
20147
20153
|
export type SplitType = "None"|"Line"|"RecordIO"|"TFRecord"|string;
|
20148
20154
|
export type StageStatus = "CREATING"|"READYTODEPLOY"|"STARTING"|"INPROGRESS"|"DEPLOYED"|"FAILED"|"STOPPING"|"STOPPED"|string;
|
20155
|
+
export interface Stairs {
|
20156
|
+
/**
|
20157
|
+
* Defines how long each traffic step should be.
|
20158
|
+
*/
|
20159
|
+
DurationInSeconds?: TrafficDurationInSeconds;
|
20160
|
+
/**
|
20161
|
+
* Specifies how many steps to perform during traffic.
|
20162
|
+
*/
|
20163
|
+
NumberOfSteps?: NumberOfSteps;
|
20164
|
+
/**
|
20165
|
+
* Specifies how many new users to spawn in each step.
|
20166
|
+
*/
|
20167
|
+
UsersPerStep?: UsersPerStep;
|
20168
|
+
}
|
20149
20169
|
export interface StartEdgeDeploymentStageRequest {
|
20150
20170
|
/**
|
20151
20171
|
* The name of the edge deployment plan to start.
|
@@ -20611,13 +20631,17 @@ declare namespace SageMaker {
|
|
20611
20631
|
export type TrafficDurationInSeconds = number;
|
20612
20632
|
export interface TrafficPattern {
|
20613
20633
|
/**
|
20614
|
-
* Defines the traffic patterns.
|
20634
|
+
* Defines the traffic patterns. Choose either PHASES or STAIRS.
|
20615
20635
|
*/
|
20616
20636
|
TrafficType?: TrafficType;
|
20617
20637
|
/**
|
20618
20638
|
* Defines the phases traffic specification.
|
20619
20639
|
*/
|
20620
20640
|
Phases?: Phases;
|
20641
|
+
/**
|
20642
|
+
* Defines the stairs traffic pattern.
|
20643
|
+
*/
|
20644
|
+
Stairs?: Stairs;
|
20621
20645
|
}
|
20622
20646
|
export interface TrafficRoutingConfig {
|
20623
20647
|
/**
|
@@ -20638,7 +20662,7 @@ declare namespace SageMaker {
|
|
20638
20662
|
LinearStepSize?: CapacitySize;
|
20639
20663
|
}
|
20640
20664
|
export type TrafficRoutingConfigType = "ALL_AT_ONCE"|"CANARY"|"LINEAR"|string;
|
20641
|
-
export type TrafficType = "PHASES"|string;
|
20665
|
+
export type TrafficType = "PHASES"|"STAIRS"|string;
|
20642
20666
|
export type TrainingContainerArgument = string;
|
20643
20667
|
export type TrainingContainerArguments = TrainingContainerArgument[];
|
20644
20668
|
export type TrainingContainerEntrypoint = TrainingContainerEntrypointString[];
|
@@ -22473,6 +22497,7 @@ declare namespace SageMaker {
|
|
22473
22497
|
*/
|
22474
22498
|
CanvasAppSettings?: CanvasAppSettings;
|
22475
22499
|
}
|
22500
|
+
export type UsersPerStep = number;
|
22476
22501
|
export type UtilizationMetric = number;
|
22477
22502
|
export type ValidationFraction = number;
|
22478
22503
|
export type VariantName = string;
|