cdk-docker-image-deployment 0.0.150 → 0.0.152
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +36 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +104 -86
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +3 -0
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +204 -55
- package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.examples.json +5 -0
- package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.min.json +94 -0
- package/node_modules/aws-sdk/apis/cloudtrail-data-2021-08-11.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +73 -21
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +41 -33
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1477 -1297
- package/node_modules/aws-sdk/apis/forecast-2018-06-26.min.json +68 -65
- package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +312 -41
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +4 -1
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +175 -75
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +192 -176
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +630 -585
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +173 -157
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appsync.d.ts +20 -2
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -0
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +234 -40
- package/node_modules/aws-sdk/clients/cloudtraildata.d.ts +111 -0
- package/node_modules/aws-sdk/clients/cloudtraildata.js +18 -0
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +43 -6
- package/node_modules/aws-sdk/clients/devopsguru.d.ts +7 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +212 -15
- package/node_modules/aws-sdk/clients/forecastservice.d.ts +52 -39
- package/node_modules/aws-sdk/clients/groundstation.d.ts +284 -0
- package/node_modules/aws-sdk/clients/iam.d.ts +18 -18
- package/node_modules/aws-sdk/clients/iot.d.ts +4 -0
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +119 -0
- package/node_modules/aws-sdk/clients/opensearch.d.ts +31 -0
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +57 -1
- package/node_modules/aws-sdk/clients/securityhub.d.ts +26 -3
- package/node_modules/aws-sdk/clients/sns.d.ts +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +54 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +1763 -1421
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +94 -94
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -6
|
@@ -339,6 +339,14 @@ declare class MediaTailor extends Service {
|
|
|
339
339
|
* Updates a live source's configuration.
|
|
340
340
|
*/
|
|
341
341
|
updateLiveSource(callback?: (err: AWSError, data: MediaTailor.Types.UpdateLiveSourceResponse) => void): Request<MediaTailor.Types.UpdateLiveSourceResponse, AWSError>;
|
|
342
|
+
/**
|
|
343
|
+
* Updates a program within a channel.
|
|
344
|
+
*/
|
|
345
|
+
updateProgram(params: MediaTailor.Types.UpdateProgramRequest, callback?: (err: AWSError, data: MediaTailor.Types.UpdateProgramResponse) => void): Request<MediaTailor.Types.UpdateProgramResponse, AWSError>;
|
|
346
|
+
/**
|
|
347
|
+
* Updates a program within a channel.
|
|
348
|
+
*/
|
|
349
|
+
updateProgram(callback?: (err: AWSError, data: MediaTailor.Types.UpdateProgramResponse) => void): Request<MediaTailor.Types.UpdateProgramResponse, AWSError>;
|
|
342
350
|
/**
|
|
343
351
|
* Updates a source location. A source location is a container for sources. For more information about source locations, see Working with source locations in the MediaTailor User Guide.
|
|
344
352
|
*/
|
|
@@ -505,6 +513,12 @@ declare namespace MediaTailor {
|
|
|
505
513
|
Tier: __string;
|
|
506
514
|
}
|
|
507
515
|
export type ChannelState = "RUNNING"|"STOPPED"|string;
|
|
516
|
+
export interface ClipRange {
|
|
517
|
+
/**
|
|
518
|
+
* The end offset of the clip range, in milliseconds, starting from the beginning of the VOD source associated with the program.
|
|
519
|
+
*/
|
|
520
|
+
EndOffsetMillis: __long;
|
|
521
|
+
}
|
|
508
522
|
export type ConfigurationAliasesRequest = {[key: string]: __mapOf__string};
|
|
509
523
|
export type ConfigurationAliasesResponse = {[key: string]: __mapOf__string};
|
|
510
524
|
export interface ConfigureLogsForChannelRequest {
|
|
@@ -754,10 +768,18 @@ declare namespace MediaTailor {
|
|
|
754
768
|
* The name to assign to the channel for this program.
|
|
755
769
|
*/
|
|
756
770
|
ChannelName?: __string;
|
|
771
|
+
/**
|
|
772
|
+
* The clip range configuration settings.
|
|
773
|
+
*/
|
|
774
|
+
ClipRange?: ClipRange;
|
|
757
775
|
/**
|
|
758
776
|
* The time the program was created.
|
|
759
777
|
*/
|
|
760
778
|
CreationTime?: __timestampUnix;
|
|
779
|
+
/**
|
|
780
|
+
* The duration of the live program in milliseconds.
|
|
781
|
+
*/
|
|
782
|
+
DurationMillis?: __long;
|
|
761
783
|
/**
|
|
762
784
|
* The name of the LiveSource for this Program.
|
|
763
785
|
*/
|
|
@@ -1134,10 +1156,18 @@ declare namespace MediaTailor {
|
|
|
1134
1156
|
* The name of the channel that the program belongs to.
|
|
1135
1157
|
*/
|
|
1136
1158
|
ChannelName?: __string;
|
|
1159
|
+
/**
|
|
1160
|
+
* The clip range configuration settings.
|
|
1161
|
+
*/
|
|
1162
|
+
ClipRange?: ClipRange;
|
|
1137
1163
|
/**
|
|
1138
1164
|
* The timestamp of when the program was created.
|
|
1139
1165
|
*/
|
|
1140
1166
|
CreationTime?: __timestampUnix;
|
|
1167
|
+
/**
|
|
1168
|
+
* The duration of the live program in milliseconds.
|
|
1169
|
+
*/
|
|
1170
|
+
DurationMillis?: Long;
|
|
1141
1171
|
/**
|
|
1142
1172
|
* The name of the LiveSource for this Program.
|
|
1143
1173
|
*/
|
|
@@ -1663,6 +1693,7 @@ declare namespace MediaTailor {
|
|
|
1663
1693
|
}
|
|
1664
1694
|
export type LogType = "AS_RUN"|string;
|
|
1665
1695
|
export type LogTypes = LogType[];
|
|
1696
|
+
export type Long = number;
|
|
1666
1697
|
export interface ManifestProcessingRules {
|
|
1667
1698
|
/**
|
|
1668
1699
|
* For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest. No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.
|
|
@@ -2017,6 +2048,10 @@ declare namespace MediaTailor {
|
|
|
2017
2048
|
VodSourceName?: __string;
|
|
2018
2049
|
}
|
|
2019
2050
|
export interface ScheduleConfiguration {
|
|
2051
|
+
/**
|
|
2052
|
+
* Program clip range configuration.
|
|
2053
|
+
*/
|
|
2054
|
+
ClipRange?: ClipRange;
|
|
2020
2055
|
/**
|
|
2021
2056
|
* Program transition configurations.
|
|
2022
2057
|
*/
|
|
@@ -2357,6 +2392,90 @@ declare namespace MediaTailor {
|
|
|
2357
2392
|
*/
|
|
2358
2393
|
Tags?: __mapOf__string;
|
|
2359
2394
|
}
|
|
2395
|
+
export interface UpdateProgramRequest {
|
|
2396
|
+
/**
|
|
2397
|
+
* The ad break configuration settings.
|
|
2398
|
+
*/
|
|
2399
|
+
AdBreaks?: __listOfAdBreak;
|
|
2400
|
+
/**
|
|
2401
|
+
* The name of the channel for this Program.
|
|
2402
|
+
*/
|
|
2403
|
+
ChannelName: __string;
|
|
2404
|
+
/**
|
|
2405
|
+
* The name of the Program.
|
|
2406
|
+
*/
|
|
2407
|
+
ProgramName: __string;
|
|
2408
|
+
/**
|
|
2409
|
+
* The schedule configuration settings.
|
|
2410
|
+
*/
|
|
2411
|
+
ScheduleConfiguration: UpdateProgramScheduleConfiguration;
|
|
2412
|
+
}
|
|
2413
|
+
export interface UpdateProgramResponse {
|
|
2414
|
+
/**
|
|
2415
|
+
* The ad break configuration settings.
|
|
2416
|
+
*/
|
|
2417
|
+
AdBreaks?: __listOfAdBreak;
|
|
2418
|
+
/**
|
|
2419
|
+
* The ARN to assign to the program.
|
|
2420
|
+
*/
|
|
2421
|
+
Arn?: __string;
|
|
2422
|
+
/**
|
|
2423
|
+
* The name to assign to the channel for this program.
|
|
2424
|
+
*/
|
|
2425
|
+
ChannelName?: __string;
|
|
2426
|
+
/**
|
|
2427
|
+
* The clip range configuration settings.
|
|
2428
|
+
*/
|
|
2429
|
+
ClipRange?: ClipRange;
|
|
2430
|
+
/**
|
|
2431
|
+
* The time the program was created.
|
|
2432
|
+
*/
|
|
2433
|
+
CreationTime?: __timestampUnix;
|
|
2434
|
+
/**
|
|
2435
|
+
* The duration of the live program in milliseconds.
|
|
2436
|
+
*/
|
|
2437
|
+
DurationMillis?: __long;
|
|
2438
|
+
/**
|
|
2439
|
+
* The name of the LiveSource for this Program.
|
|
2440
|
+
*/
|
|
2441
|
+
LiveSourceName?: __string;
|
|
2442
|
+
/**
|
|
2443
|
+
* The name to assign to this program.
|
|
2444
|
+
*/
|
|
2445
|
+
ProgramName?: __string;
|
|
2446
|
+
/**
|
|
2447
|
+
* The scheduled start time for this Program.
|
|
2448
|
+
*/
|
|
2449
|
+
ScheduledStartTime?: __timestampUnix;
|
|
2450
|
+
/**
|
|
2451
|
+
* The name to assign to the source location for this program.
|
|
2452
|
+
*/
|
|
2453
|
+
SourceLocationName?: __string;
|
|
2454
|
+
/**
|
|
2455
|
+
* The name that's used to refer to a VOD source.
|
|
2456
|
+
*/
|
|
2457
|
+
VodSourceName?: __string;
|
|
2458
|
+
}
|
|
2459
|
+
export interface UpdateProgramScheduleConfiguration {
|
|
2460
|
+
/**
|
|
2461
|
+
* Program clip range configuration.
|
|
2462
|
+
*/
|
|
2463
|
+
ClipRange?: ClipRange;
|
|
2464
|
+
/**
|
|
2465
|
+
* Program transition configuration.
|
|
2466
|
+
*/
|
|
2467
|
+
Transition?: UpdateProgramTransition;
|
|
2468
|
+
}
|
|
2469
|
+
export interface UpdateProgramTransition {
|
|
2470
|
+
/**
|
|
2471
|
+
* The duration of the live program in seconds.
|
|
2472
|
+
*/
|
|
2473
|
+
DurationMillis?: __long;
|
|
2474
|
+
/**
|
|
2475
|
+
* The date and time that the program is scheduled to start, in epoch milliseconds.
|
|
2476
|
+
*/
|
|
2477
|
+
ScheduledStartTimeMillis?: __long;
|
|
2478
|
+
}
|
|
2360
2479
|
export interface UpdateSourceLocationRequest {
|
|
2361
2480
|
/**
|
|
2362
2481
|
* Access configuration parameters. Configures the type of authentication used to access content from your source location.
|
|
@@ -867,6 +867,13 @@ declare namespace OpenSearch {
|
|
|
867
867
|
}
|
|
868
868
|
export type ConnectionAlias = string;
|
|
869
869
|
export type ConnectionId = string;
|
|
870
|
+
export type ConnectionMode = "DIRECT"|"VPC_ENDPOINT"|string;
|
|
871
|
+
export interface ConnectionProperties {
|
|
872
|
+
/**
|
|
873
|
+
* The endpoint of the remote domain.
|
|
874
|
+
*/
|
|
875
|
+
Endpoint?: Endpoint;
|
|
876
|
+
}
|
|
870
877
|
export type ConnectionStatusMessage = string;
|
|
871
878
|
export interface CreateDomainRequest {
|
|
872
879
|
/**
|
|
@@ -953,6 +960,10 @@ declare namespace OpenSearch {
|
|
|
953
960
|
* Name of the connection.
|
|
954
961
|
*/
|
|
955
962
|
ConnectionAlias: ConnectionAlias;
|
|
963
|
+
/**
|
|
964
|
+
* The connection mode.
|
|
965
|
+
*/
|
|
966
|
+
ConnectionMode?: ConnectionMode;
|
|
956
967
|
}
|
|
957
968
|
export interface CreateOutboundConnectionResponse {
|
|
958
969
|
/**
|
|
@@ -975,6 +986,14 @@ declare namespace OpenSearch {
|
|
|
975
986
|
* The unique identifier for the created outbound connection, which is used for subsequent operations on the connection.
|
|
976
987
|
*/
|
|
977
988
|
ConnectionId?: ConnectionId;
|
|
989
|
+
/**
|
|
990
|
+
* The connection mode.
|
|
991
|
+
*/
|
|
992
|
+
ConnectionMode?: ConnectionMode;
|
|
993
|
+
/**
|
|
994
|
+
* The ConnectionProperties for the newly created connection.
|
|
995
|
+
*/
|
|
996
|
+
ConnectionProperties?: ConnectionProperties;
|
|
978
997
|
}
|
|
979
998
|
export interface CreatePackageRequest {
|
|
980
999
|
/**
|
|
@@ -1862,6 +1881,10 @@ declare namespace OpenSearch {
|
|
|
1862
1881
|
* The current status of the connection.
|
|
1863
1882
|
*/
|
|
1864
1883
|
ConnectionStatus?: InboundConnectionStatus;
|
|
1884
|
+
/**
|
|
1885
|
+
* The connection mode.
|
|
1886
|
+
*/
|
|
1887
|
+
ConnectionMode?: ConnectionMode;
|
|
1865
1888
|
}
|
|
1866
1889
|
export interface InboundConnectionStatus {
|
|
1867
1890
|
/**
|
|
@@ -2230,6 +2253,14 @@ declare namespace OpenSearch {
|
|
|
2230
2253
|
* Status of the connection.
|
|
2231
2254
|
*/
|
|
2232
2255
|
ConnectionStatus?: OutboundConnectionStatus;
|
|
2256
|
+
/**
|
|
2257
|
+
* The connection mode.
|
|
2258
|
+
*/
|
|
2259
|
+
ConnectionMode?: ConnectionMode;
|
|
2260
|
+
/**
|
|
2261
|
+
* Properties for the outbound connection.
|
|
2262
|
+
*/
|
|
2263
|
+
ConnectionProperties?: ConnectionProperties;
|
|
2233
2264
|
}
|
|
2234
2265
|
export interface OutboundConnectionStatus {
|
|
2235
2266
|
/**
|
|
@@ -488,7 +488,7 @@ declare namespace Polly {
|
|
|
488
488
|
*/
|
|
489
489
|
SupportedEngines?: EngineList;
|
|
490
490
|
}
|
|
491
|
-
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|string;
|
|
491
|
+
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|"Ruth"|"Stephen"|string;
|
|
492
492
|
export type VoiceList = Voice[];
|
|
493
493
|
export type VoiceName = string;
|
|
494
494
|
/**
|
|
@@ -3423,6 +3423,12 @@ declare namespace SageMaker {
|
|
|
3423
3423
|
*/
|
|
3424
3424
|
EndTimeOffset?: MonitoringTimeOffsetString;
|
|
3425
3425
|
}
|
|
3426
|
+
export interface BestObjectiveNotImproving {
|
|
3427
|
+
/**
|
|
3428
|
+
* The number of training jobs that have failed to improve model performance by 1% or greater over prior training jobs as evaluated against an objective function.
|
|
3429
|
+
*/
|
|
3430
|
+
MaxNumberOfTrainingJobsNotImproving?: MaxNumberOfTrainingJobsNotImproving;
|
|
3431
|
+
}
|
|
3426
3432
|
export interface Bias {
|
|
3427
3433
|
/**
|
|
3428
3434
|
* The bias report for a model
|
|
@@ -3934,6 +3940,7 @@ declare namespace SageMaker {
|
|
|
3934
3940
|
CompilationJobStatus: CompilationJobStatus;
|
|
3935
3941
|
}
|
|
3936
3942
|
export type CompilerOptions = string;
|
|
3943
|
+
export type CompleteOnConvergence = "Disabled"|"Enabled"|string;
|
|
3937
3944
|
export type CompressionType = "None"|"Gzip"|string;
|
|
3938
3945
|
export type CompressionTypes = CompressionType[];
|
|
3939
3946
|
export type ConditionOutcome = "True"|"False"|string;
|
|
@@ -4067,6 +4074,12 @@ declare namespace SageMaker {
|
|
|
4067
4074
|
MaxValue: ParameterValue;
|
|
4068
4075
|
}
|
|
4069
4076
|
export type ContinuousParameterRanges = ContinuousParameterRange[];
|
|
4077
|
+
export interface ConvergenceDetected {
|
|
4078
|
+
/**
|
|
4079
|
+
* A flag to stop a tuning job once AMT has detected that the job has converged.
|
|
4080
|
+
*/
|
|
4081
|
+
CompleteOnConvergence?: CompleteOnConvergence;
|
|
4082
|
+
}
|
|
4070
4083
|
export interface CreateActionRequest {
|
|
4071
4084
|
/**
|
|
4072
4085
|
* The name of the action. Must be unique to your account in an Amazon Web Services Region.
|
|
@@ -8098,6 +8111,11 @@ declare namespace SageMaker {
|
|
|
8098
8111
|
* If the tuning job failed, the reason it failed.
|
|
8099
8112
|
*/
|
|
8100
8113
|
FailureReason?: FailureReason;
|
|
8114
|
+
/**
|
|
8115
|
+
* Tuning job completion information returned as the response from a hyperparameter tuning job. This information tells if your tuning job has or has not converged. It also includes the number of training jobs that have not improved model performance as evaluated against the objective function.
|
|
8116
|
+
*/
|
|
8117
|
+
TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
|
|
8118
|
+
ConsumedResources?: HyperParameterTuningJobConsumedResources;
|
|
8101
8119
|
}
|
|
8102
8120
|
export interface DescribeImageRequest {
|
|
8103
8121
|
/**
|
|
@@ -11607,6 +11625,16 @@ declare namespace SageMaker {
|
|
|
11607
11625
|
}
|
|
11608
11626
|
export type HyperParameterTuningInstanceConfigs = HyperParameterTuningInstanceConfig[];
|
|
11609
11627
|
export type HyperParameterTuningJobArn = string;
|
|
11628
|
+
export interface HyperParameterTuningJobCompletionDetails {
|
|
11629
|
+
/**
|
|
11630
|
+
* The number of training jobs launched by a tuning job that are not improving (1% or less) as measured by model performance evaluated against an objective function.
|
|
11631
|
+
*/
|
|
11632
|
+
NumberOfTrainingJobsObjectiveNotImproving?: Integer;
|
|
11633
|
+
/**
|
|
11634
|
+
* The time in timestamp format that AMT detected model convergence, as defined by a lack of significant improvement over time based on criteria developed over a wide range of diverse benchmarking tests.
|
|
11635
|
+
*/
|
|
11636
|
+
ConvergenceDetectedTime?: Timestamp;
|
|
11637
|
+
}
|
|
11610
11638
|
export interface HyperParameterTuningJobConfig {
|
|
11611
11639
|
/**
|
|
11612
11640
|
* Specifies how hyperparameter tuning chooses the combinations of hyperparameter values to use for the training job it launches. For information about search strategies, see How Hyperparameter Tuning Works.
|
|
@@ -11641,6 +11669,12 @@ declare namespace SageMaker {
|
|
|
11641
11669
|
*/
|
|
11642
11670
|
RandomSeed?: RandomSeed;
|
|
11643
11671
|
}
|
|
11672
|
+
export interface HyperParameterTuningJobConsumedResources {
|
|
11673
|
+
/**
|
|
11674
|
+
* The wall clock runtime in seconds used by your hyperparameter tuning job.
|
|
11675
|
+
*/
|
|
11676
|
+
RuntimeInSeconds?: Integer;
|
|
11677
|
+
}
|
|
11644
11678
|
export type HyperParameterTuningJobName = string;
|
|
11645
11679
|
export interface HyperParameterTuningJobObjective {
|
|
11646
11680
|
/**
|
|
@@ -11698,6 +11732,14 @@ declare namespace SageMaker {
|
|
|
11698
11732
|
* The tags associated with a hyperparameter tuning job. For more information see Tagging Amazon Web Services resources.
|
|
11699
11733
|
*/
|
|
11700
11734
|
Tags?: TagList;
|
|
11735
|
+
/**
|
|
11736
|
+
* Information about either a current or completed hyperparameter tuning job.
|
|
11737
|
+
*/
|
|
11738
|
+
TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
|
|
11739
|
+
/**
|
|
11740
|
+
* The total amount of resources consumed by a hyperparameter tuning job.
|
|
11741
|
+
*/
|
|
11742
|
+
ConsumedResources?: HyperParameterTuningJobConsumedResources;
|
|
11701
11743
|
}
|
|
11702
11744
|
export type HyperParameterTuningJobSortByOptions = "Name"|"Status"|"CreationTime"|string;
|
|
11703
11745
|
export type HyperParameterTuningJobStatus = "Completed"|"InProgress"|"Failed"|"Stopped"|"Stopping"|string;
|
|
@@ -11762,6 +11804,7 @@ declare namespace SageMaker {
|
|
|
11762
11804
|
WarmStartType: HyperParameterTuningJobWarmStartType;
|
|
11763
11805
|
}
|
|
11764
11806
|
export type HyperParameterTuningJobWarmStartType = "IdenticalDataAndAlgorithm"|"TransferLearning"|string;
|
|
11807
|
+
export type HyperParameterTuningMaxRuntimeInSeconds = number;
|
|
11765
11808
|
export interface HyperParameterTuningResourceConfig {
|
|
11766
11809
|
/**
|
|
11767
11810
|
* The instance type used to run hyperparameter optimization tuning jobs. See descriptions of instance types for more information.
|
|
@@ -15660,6 +15703,7 @@ declare namespace SageMaker {
|
|
|
15660
15703
|
export type MaxHumanLabeledObjectCount = number;
|
|
15661
15704
|
export type MaxNumberOfTests = number;
|
|
15662
15705
|
export type MaxNumberOfTrainingJobs = number;
|
|
15706
|
+
export type MaxNumberOfTrainingJobsNotImproving = number;
|
|
15663
15707
|
export type MaxParallelExecutionSteps = number;
|
|
15664
15708
|
export type MaxParallelOfTests = number;
|
|
15665
15709
|
export type MaxParallelTrainingJobs = number;
|
|
@@ -19033,6 +19077,10 @@ declare namespace SageMaker {
|
|
|
19033
19077
|
* The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.
|
|
19034
19078
|
*/
|
|
19035
19079
|
MaxParallelTrainingJobs: MaxParallelTrainingJobs;
|
|
19080
|
+
/**
|
|
19081
|
+
* The maximum time in seconds that a training job launched by a hyperparameter tuning job can run.
|
|
19082
|
+
*/
|
|
19083
|
+
MaxRuntimeInSeconds?: HyperParameterTuningMaxRuntimeInSeconds;
|
|
19036
19084
|
}
|
|
19037
19085
|
export type ResourcePolicyString = string;
|
|
19038
19086
|
export type ResourcePropertyName = string;
|
|
@@ -20674,7 +20722,15 @@ declare namespace SageMaker {
|
|
|
20674
20722
|
/**
|
|
20675
20723
|
* The value of the objective metric.
|
|
20676
20724
|
*/
|
|
20677
|
-
TargetObjectiveMetricValue
|
|
20725
|
+
TargetObjectiveMetricValue?: TargetObjectiveMetricValue;
|
|
20726
|
+
/**
|
|
20727
|
+
* A flag to stop your hyperparameter tuning job if model performance fails to improve as evaluated against an objective function.
|
|
20728
|
+
*/
|
|
20729
|
+
BestObjectiveNotImproving?: BestObjectiveNotImproving;
|
|
20730
|
+
/**
|
|
20731
|
+
* A flag to top your hyperparameter tuning job if automatic model tuning (AMT) has detected that your model has converged as evaluated against your objective function.
|
|
20732
|
+
*/
|
|
20733
|
+
ConvergenceDetected?: ConvergenceDetected;
|
|
20678
20734
|
}
|
|
20679
20735
|
export interface TuningJobStepMetaData {
|
|
20680
20736
|
/**
|
|
@@ -608,6 +608,13 @@ declare namespace SecurityHub {
|
|
|
608
608
|
export type AdminStatus = "ENABLED"|"DISABLE_IN_PROGRESS"|string;
|
|
609
609
|
export type AdminsMaxResults = number;
|
|
610
610
|
export type ArnList = NonEmptyString[];
|
|
611
|
+
export interface AssociatedStandard {
|
|
612
|
+
/**
|
|
613
|
+
* The unique identifier of a standard in which a control is enabled. This field consists of the resource portion of the Amazon Resource Name (ARN) returned for a standard in the DescribeStandards API response.
|
|
614
|
+
*/
|
|
615
|
+
StandardsId?: NonEmptyString;
|
|
616
|
+
}
|
|
617
|
+
export type AssociatedStandardsList = AssociatedStandard[];
|
|
611
618
|
export type AutoEnableStandards = "NONE"|"DEFAULT"|string;
|
|
612
619
|
export interface AvailabilityZone {
|
|
613
620
|
/**
|
|
@@ -8699,11 +8706,11 @@ declare namespace SecurityHub {
|
|
|
8699
8706
|
*/
|
|
8700
8707
|
AcceleratorTypes?: NonEmptyStringList;
|
|
8701
8708
|
/**
|
|
8702
|
-
* An array of up to three Git repositories associated with the notebook instance. These can be either the names of Git repositories stored as resources in your account, or the URL of Git repositories in
|
|
8709
|
+
* An array of up to three Git repositories associated with the notebook instance. These can be either the names of Git repositories stored as resources in your account, or the URL of Git repositories in CodeCommit or in any other Git repository. These repositories are cloned at the same level as the default repository of your notebook instance. For more information, see Associating Git repositories with SageMaker notebook instances in the Amazon SageMaker Developer Guide.
|
|
8703
8710
|
*/
|
|
8704
8711
|
AdditionalCodeRepositories?: NonEmptyStringList;
|
|
8705
8712
|
/**
|
|
8706
|
-
* The Git repository associated with the notebook instance as its default code repository. This can be either the name of a Git repository stored as a resource in your account, or the URL of a Git repository in
|
|
8713
|
+
* The Git repository associated with the notebook instance as its default code repository. This can be either the name of a Git repository stored as a resource in your account, or the URL of a Git repository in CodeCommit or in any other Git repository. When you open a notebook instance, it opens in the directory that contains this repository. For more information, see Associating Git repositories with SageMaker notebook instances in the Amazon SageMaker Developer Guide.
|
|
8707
8714
|
*/
|
|
8708
8715
|
DefaultCodeRepository?: NonEmptyString;
|
|
8709
8716
|
/**
|
|
@@ -9368,6 +9375,14 @@ declare namespace SecurityHub {
|
|
|
9368
9375
|
* Indicates whether or not sample findings are included in the filter results.
|
|
9369
9376
|
*/
|
|
9370
9377
|
Sample?: BooleanFilterList;
|
|
9378
|
+
/**
|
|
9379
|
+
* The unique identifier of a control across standards. Values for this field typically consist of an Amazon Web Service and a number, such as APIGateway.5.
|
|
9380
|
+
*/
|
|
9381
|
+
ComplianceSecurityControlId?: StringFilterList;
|
|
9382
|
+
/**
|
|
9383
|
+
* The unique identifier of a standard in which a control is enabled. This field consists of the resource portion of the Amazon Resource Name (ARN) returned for a standard in the DescribeStandards API response.
|
|
9384
|
+
*/
|
|
9385
|
+
ComplianceAssociatedStandardsId?: StringFilterList;
|
|
9371
9386
|
}
|
|
9372
9387
|
export interface AwsSecurityFindingIdentifier {
|
|
9373
9388
|
/**
|
|
@@ -10307,6 +10322,14 @@ declare namespace SecurityHub {
|
|
|
10307
10322
|
* For findings generated from controls, a list of reasons behind the value of Status. For the list of status reason codes and their meanings, see Standards-related information in the ASFF in the Security Hub User Guide.
|
|
10308
10323
|
*/
|
|
10309
10324
|
StatusReasons?: StatusReasonsList;
|
|
10325
|
+
/**
|
|
10326
|
+
* The unique identifier of a control across standards. Values for this field typically consist of an Amazon Web Service and a number, such as APIGateway.5.
|
|
10327
|
+
*/
|
|
10328
|
+
SecurityControlId?: NonEmptyString;
|
|
10329
|
+
/**
|
|
10330
|
+
* The enabled security standards in which a security control is currently enabled.
|
|
10331
|
+
*/
|
|
10332
|
+
AssociatedStandards?: AssociatedStandardsList;
|
|
10310
10333
|
}
|
|
10311
10334
|
export type ComplianceStatus = "PASSED"|"WARNING"|"FAILED"|"NOT_AVAILABLE"|string;
|
|
10312
10335
|
export interface ContainerDetails {
|
|
@@ -11401,7 +11424,7 @@ declare namespace SecurityHub {
|
|
|
11401
11424
|
*/
|
|
11402
11425
|
AdministratorId?: NonEmptyString;
|
|
11403
11426
|
/**
|
|
11404
|
-
* The status of the relationship between the member account and its administrator account. The status can have one of the following values:
|
|
11427
|
+
* The status of the relationship between the member account and its administrator account. The status can have one of the following values: Created - Indicates that the administrator account added the member account, but has not yet invited the member account. Invited - Indicates that the administrator account invited the member account. The member account has not yet responded to the invitation. Enabled - Indicates that the member account is currently active. For manually invited member accounts, indicates that the member account accepted the invitation. Removed - Indicates that the administrator account disassociated the member account. Resigned - Indicates that the member account disassociated themselves from the administrator account. Deleted - Indicates that the administrator account deleted the member account. AccountSuspended - Indicates that an organization account was suspended from Amazon Web Services at the same time that the administrator account tried to enable the organization account as a member account.
|
|
11405
11428
|
*/
|
|
11406
11429
|
MemberStatus?: NonEmptyString;
|
|
11407
11430
|
/**
|
|
@@ -483,7 +483,7 @@ declare namespace SNS {
|
|
|
483
483
|
*/
|
|
484
484
|
Name: topicName;
|
|
485
485
|
/**
|
|
486
|
-
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses: DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. FifoTopic – Set to true to create a FIFO topic. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic. SignatureVersion – The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS. By default, SignatureVersion is set to 1.
|
|
486
|
+
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses: DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. FifoTopic – Set to true to create a FIFO topic. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic. SignatureVersion – The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS. By default, SignatureVersion is set to 1. The following attribute applies only to server-side encryption: KmsMasterKeyId – The ID of an Amazon Web Services managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the Key Management Service API Reference. The following attributes apply only to FIFO topics: FifoTopic – When this is set to true, a FIFO topic is created. ContentBasedDeduplication – Enables content-based deduplication for FIFO topics. By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action. When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). (Optional) To override the generated value, you can specify a value for the MessageDeduplicationId parameter for the Publish action.
|
|
487
487
|
*/
|
|
488
488
|
Attributes?: TopicAttributesMap;
|
|
489
489
|
/**
|
|
@@ -614,7 +614,7 @@ declare namespace SNS {
|
|
|
614
614
|
}
|
|
615
615
|
export interface GetTopicAttributesResponse {
|
|
616
616
|
/**
|
|
617
|
-
* A map of the topic's attributes. Attributes in this map include the following: DeliveryPolicy – The JSON serialization of the topic's delivery policy. DisplayName – The human-readable name used in the From field for notifications to email and email-json endpoints. EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy, taking system defaults into account. Owner – The Amazon Web Services account ID of the topic's owner. Policy – The JSON serialization of the topic's access control policy. SignatureVersion – The version of the Amazon SNS signature used for the topic. By default, SignatureVersion is set to 1. The signature is a Base64-encoded SHA1withRSA signature. When you set SignatureVersion to 2. Amazon SNS uses a Base64-encoded SHA256withRSA signature. If the API response does not include the SignatureVersion attribute, it means that the SignatureVersion for the topic has value 1. SubscriptionsConfirmed – The number of confirmed subscriptions for the topic. SubscriptionsDeleted – The number of deleted subscriptions for the topic. SubscriptionsPending – The number of subscriptions pending confirmation for the topic. TopicArn – The topic's ARN.
|
|
617
|
+
* A map of the topic's attributes. Attributes in this map include the following: DeliveryPolicy – The JSON serialization of the topic's delivery policy. DisplayName – The human-readable name used in the From field for notifications to email and email-json endpoints. EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy, taking system defaults into account. Owner – The Amazon Web Services account ID of the topic's owner. Policy – The JSON serialization of the topic's access control policy. SignatureVersion – The version of the Amazon SNS signature used for the topic. By default, SignatureVersion is set to 1. The signature is a Base64-encoded SHA1withRSA signature. When you set SignatureVersion to 2. Amazon SNS uses a Base64-encoded SHA256withRSA signature. If the API response does not include the SignatureVersion attribute, it means that the SignatureVersion for the topic has value 1. SubscriptionsConfirmed – The number of confirmed subscriptions for the topic. SubscriptionsDeleted – The number of deleted subscriptions for the topic. SubscriptionsPending – The number of subscriptions pending confirmation for the topic. TopicArn – The topic's ARN. The following attribute applies only to server-side-encryption: KmsMasterKeyId - The ID of an Amazon Web Services managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the Key Management Service API Reference. The following attributes apply only to FIFO topics: FifoTopic – When this is set to true, a FIFO topic is created. ContentBasedDeduplication – Enables content-based deduplication for FIFO topics. By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action. When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). (Optional) To override the generated value, you can specify a value for the MessageDeduplicationId parameter for the Publish action.
|
|
618
618
|
*/
|
|
619
619
|
Attributes?: TopicAttributesMap;
|
|
620
620
|
}
|
|
@@ -1043,7 +1043,7 @@ declare namespace SNS {
|
|
|
1043
1043
|
*/
|
|
1044
1044
|
TopicArn: topicARN;
|
|
1045
1045
|
/**
|
|
1046
|
-
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses: DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.
|
|
1046
|
+
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses: ApplicationSuccessFeedbackRoleArn – Indicates failed message delivery status for an Amazon SNS topic that is subscribed to a platform application endpoint. DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic. HTTP HTTPSuccessFeedbackRoleArn – Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an HTTP endpoint. HTTPSuccessFeedbackSampleRate – Indicates percentage of successful messages to sample for an Amazon SNS topic that is subscribed to an HTTP endpoint. HTTPFailureFeedbackRoleArn – Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an HTTP endpoint. Amazon Kinesis Data Firehose FirehoseSuccessFeedbackRoleArn – Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Amazon Kinesis Data Firehose endpoint. FirehoseSuccessFeedbackSampleRate – Indicates percentage of successful messages to sample for an Amazon SNS topic that is subscribed to an Amazon Kinesis Data Firehose endpoint. FirehoseFailureFeedbackRoleArn – Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Amazon Kinesis Data Firehose endpoint. Lambda LambdaSuccessFeedbackRoleArn – Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Lambda endpoint. LambdaSuccessFeedbackSampleRate – Indicates percentage of successful messages to sample for an Amazon SNS topic that is subscribed to an Lambda endpoint. LambdaFailureFeedbackRoleArn – Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Lambda endpoint. Platform application endpoint ApplicationSuccessFeedbackRoleArn – Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Amazon Web Services application endpoint. ApplicationSuccessFeedbackSampleRate – Indicates percentage of successful messages to sample for an Amazon SNS topic that is subscribed to an Amazon Web Services application endpoint. ApplicationFailureFeedbackRoleArn – Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Amazon Web Services application endpoint. In addition to being able to configure topic attributes for message delivery status of notification messages sent to Amazon SNS application endpoints, you can also configure application attributes for the delivery status of push notification messages sent to push notification services. For example, For more information, see Using Amazon SNS Application Attributes for Message Delivery Status. Amazon SQS SQSSuccessFeedbackRoleArn – Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Amazon SQS endpoint. SQSSuccessFeedbackSampleRate – Indicates percentage of successful messages to sample for an Amazon SNS topic that is subscribed to an Amazon SQS endpoint. SQSFailureFeedbackRoleArn – Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Amazon SQS endpoint. The <ENDPOINT>SuccessFeedbackRoleArn and <ENDPOINT>FailureFeedbackRoleArn attributes are used to give Amazon SNS write access to use CloudWatch Logs on your behalf. The <ENDPOINT>SuccessFeedbackSampleRate attribute is for specifying the sample rate percentage (0-100) of successfully delivered messages. After you configure the <ENDPOINT>FailureFeedbackRoleArn attribute, then all failed message deliveries generate CloudWatch Logs. The following attribute applies only to server-side-encryption: KmsMasterKeyId – The ID of an Amazon Web Services managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the Key Management Service API Reference. SignatureVersion – The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS. The following attribute applies only to FIFO topics: ContentBasedDeduplication – Enables content-based deduplication for FIFO topics. By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action. When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). (Optional) To override the generated value, you can specify a value for the MessageDeduplicationId parameter for the Publish action.
|
|
1047
1047
|
*/
|
|
1048
1048
|
AttributeName: attributeName;
|
|
1049
1049
|
/**
|