cdk-lambda-subminute 2.0.420 → 2.0.422
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 +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cleanroomsml-2023-09-06.min.json +7 -24
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +43 -42
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +611 -324
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +22 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +71 -34
- package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +12 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +287 -232
- package/node_modules/aws-sdk/apis/medical-imaging-2023-07-19.min.json +50 -8
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +90 -79
- package/node_modules/aws-sdk/clients/cleanroomsml.d.ts +13 -30
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +5 -0
- package/node_modules/aws-sdk/clients/datazone.d.ts +303 -2
- package/node_modules/aws-sdk/clients/docdb.d.ts +21 -0
- package/node_modules/aws-sdk/clients/ecs.d.ts +2 -2
- package/node_modules/aws-sdk/clients/glue.d.ts +58 -0
- package/node_modules/aws-sdk/clients/groundstation.d.ts +20 -4
- package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
- package/node_modules/aws-sdk/clients/medialive.d.ts +59 -0
- package/node_modules/aws-sdk/clients/medicalimaging.d.ts +53 -5
- package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +3 -3
- package/node_modules/aws-sdk/clients/securityhub.d.ts +97 -97
- package/node_modules/aws-sdk/clients/transfer.d.ts +42 -14
- 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 +14 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +46 -45
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +54 -54
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/cloudsearchdomain.js +3 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -1599,7 +1599,7 @@ declare namespace ECS {
|
|
1599
1599
|
*/
|
1600
1600
|
maximumPercent?: BoxedInteger;
|
1601
1601
|
/**
|
1602
|
-
* If a service is using the rolling update (ECS) deployment type, the minimumHealthyPercent represents a lower limit on the number of your service's tasks that must remain in the RUNNING state during a deployment, as a percentage of the desiredCount (rounded up to the nearest integer). This parameter enables you to deploy without using additional cluster capacity. For example, if your service has a desiredCount of four tasks and a minimumHealthyPercent of 50%, the service scheduler may stop two existing tasks to free up cluster capacity before starting two new tasks. For services that do not use a load balancer, the following should be noted: A service is considered healthy if all essential containers within the tasks in the service pass their health checks. If a task has no essential containers with a health check defined, the service scheduler will wait for 40 seconds after a task reaches a RUNNING state before the task is counted towards the minimum healthy percent total. If a task has one or more essential containers with a health check defined, the service scheduler will wait for the task to reach a healthy status before counting it towards the minimum healthy percent total. A task is considered healthy when all essential containers within the task have passed their health checks. The amount of time the service scheduler can wait for is determined by the container health check settings. For services that do use a load balancer, the following should be noted: If a task has no essential containers with a health check defined, the service scheduler will wait for the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. If a task has an essential container with a health check defined, the service scheduler will wait for both the task to reach a healthy status and the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the EC2 launch type, the minimum healthy percent value is set to the default value and is used to define the lower limit on the number of the tasks in the service that remain in the RUNNING state while the container instances are in the DRAINING state. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the Fargate launch type, the minimum healthy percent value is not used, although it is returned when describing your service.
|
1602
|
+
* If a service is using the rolling update (ECS) deployment type, the minimumHealthyPercent represents a lower limit on the number of your service's tasks that must remain in the RUNNING state during a deployment, as a percentage of the desiredCount (rounded up to the nearest integer). This parameter enables you to deploy without using additional cluster capacity. For example, if your service has a desiredCount of four tasks and a minimumHealthyPercent of 50%, the service scheduler may stop two existing tasks to free up cluster capacity before starting two new tasks. For services that do not use a load balancer, the following should be noted: A service is considered healthy if all essential containers within the tasks in the service pass their health checks. If a task has no essential containers with a health check defined, the service scheduler will wait for 40 seconds after a task reaches a RUNNING state before the task is counted towards the minimum healthy percent total. If a task has one or more essential containers with a health check defined, the service scheduler will wait for the task to reach a healthy status before counting it towards the minimum healthy percent total. A task is considered healthy when all essential containers within the task have passed their health checks. The amount of time the service scheduler can wait for is determined by the container health check settings. For services that do use a load balancer, the following should be noted: If a task has no essential containers with a health check defined, the service scheduler will wait for the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. If a task has an essential container with a health check defined, the service scheduler will wait for both the task to reach a healthy status and the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. The default value for a replica service for minimumHealthyPercent is 100%. The default minimumHealthyPercent value for a service using the DAEMON service schedule is 0% for the CLI, the Amazon Web Services SDKs, and the APIs and 50% for the Amazon Web Services Management Console. The minimum number of healthy tasks during a deployment is the desiredCount multiplied by the minimumHealthyPercent/100, rounded up to the nearest integer value. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the EC2 launch type, the minimum healthy percent value is set to the default value and is used to define the lower limit on the number of the tasks in the service that remain in the RUNNING state while the container instances are in the DRAINING state. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the Fargate launch type, the minimum healthy percent value is not used, although it is returned when describing your service.
|
1603
1603
|
*/
|
1604
1604
|
minimumHealthyPercent?: BoxedInteger;
|
1605
1605
|
/**
|
@@ -3127,7 +3127,7 @@ declare namespace ECS {
|
|
3127
3127
|
*/
|
3128
3128
|
tags?: Tags;
|
3129
3129
|
/**
|
3130
|
-
* The family and revision (family:revision) or full ARN of the task definition to run. If a revision isn't specified, the latest ACTIVE revision is used.
|
3130
|
+
* The family and revision (family:revision) or full ARN of the task definition to run. If a revision isn't specified, the latest ACTIVE revision is used. The full ARN value must match the value that you specified as the Resource of the principal's permissions policy. When you specify a task definition, you must either specify a specific revision, or all revisions in the ARN. To specify a specific revision, include the revision number in the ARN. For example, to specify revision 2, use arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2. To specify all revisions, use the wildcard (*) in the ARN. For example, to specify all revisions, use arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*. For more information, see Policy Resources for Amazon ECS in the Amazon Elastic Container Service Developer Guide.
|
3131
3131
|
*/
|
3132
3132
|
taskDefinition: String;
|
3133
3133
|
/**
|
@@ -8329,10 +8329,18 @@ declare namespace Glue {
|
|
8329
8329
|
* A cryptographically generated query identifier generated by Glue or Lake Formation.
|
8330
8330
|
*/
|
8331
8331
|
QueryAuthorizationId?: HashString;
|
8332
|
+
/**
|
8333
|
+
* Specifies whether the view supports the SQL dialects of one or more different query engines and can therefore be read by those engines.
|
8334
|
+
*/
|
8335
|
+
IsMultiDialectView?: Boolean;
|
8332
8336
|
/**
|
8333
8337
|
* The resource ARN of the parent resource extracted from the request.
|
8334
8338
|
*/
|
8335
8339
|
ResourceArn?: ArnString;
|
8340
|
+
/**
|
8341
|
+
* A flag that instructs the engine not to push user-provided operations into the logical plan of the view during query planning. However, if set this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
|
8342
|
+
*/
|
8343
|
+
IsProtected?: Boolean;
|
8336
8344
|
/**
|
8337
8345
|
* The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.
|
8338
8346
|
*/
|
@@ -13075,6 +13083,14 @@ declare namespace Glue {
|
|
13075
13083
|
* A FederatedTable structure that references an entity outside the Glue Data Catalog.
|
13076
13084
|
*/
|
13077
13085
|
FederatedTable?: FederatedTable;
|
13086
|
+
/**
|
13087
|
+
* A structure that contains all the information that defines the view, including the dialect or dialects for the view, and the query.
|
13088
|
+
*/
|
13089
|
+
ViewDefinition?: ViewDefinition;
|
13090
|
+
/**
|
13091
|
+
* Specifies whether the view supports the SQL dialects of one or more different query engines and can therefore be read by those engines.
|
13092
|
+
*/
|
13093
|
+
IsMultiDialectView?: NullableBoolean;
|
13078
13094
|
}
|
13079
13095
|
export interface TableError {
|
13080
13096
|
/**
|
@@ -14356,8 +14372,50 @@ declare namespace Glue {
|
|
14356
14372
|
export type VersionLongNumber = number;
|
14357
14373
|
export type VersionString = string;
|
14358
14374
|
export type VersionsString = string;
|
14375
|
+
export interface ViewDefinition {
|
14376
|
+
/**
|
14377
|
+
* You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
|
14378
|
+
*/
|
14379
|
+
IsProtected?: NullableBoolean;
|
14380
|
+
/**
|
14381
|
+
* The definer of a view in SQL.
|
14382
|
+
*/
|
14383
|
+
Definer?: ArnString;
|
14384
|
+
/**
|
14385
|
+
* A list of table Amazon Resource Names (ARNs).
|
14386
|
+
*/
|
14387
|
+
SubObjects?: ViewSubObjectsList;
|
14388
|
+
/**
|
14389
|
+
* A list of representations.
|
14390
|
+
*/
|
14391
|
+
Representations?: ViewRepresentationList;
|
14392
|
+
}
|
14359
14393
|
export type ViewDialect = "REDSHIFT"|"ATHENA"|"SPARK"|string;
|
14360
14394
|
export type ViewDialectVersionString = string;
|
14395
|
+
export interface ViewRepresentation {
|
14396
|
+
/**
|
14397
|
+
* The dialect of the query engine.
|
14398
|
+
*/
|
14399
|
+
Dialect?: ViewDialect;
|
14400
|
+
/**
|
14401
|
+
* The version of the dialect of the query engine. For example, 3.0.0.
|
14402
|
+
*/
|
14403
|
+
DialectVersion?: ViewDialectVersionString;
|
14404
|
+
/**
|
14405
|
+
* The SELECT query provided by the customer during CREATE VIEW DDL. This SQL is not used during a query on a view (ViewExpandedText is used instead). ViewOriginalText is used for cases like SHOW CREATE VIEW where users want to see the original DDL command that created the view.
|
14406
|
+
*/
|
14407
|
+
ViewOriginalText?: ViewTextString;
|
14408
|
+
/**
|
14409
|
+
* The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform ViewOriginalText to ViewExpandedText. For example: Fully qualify identifiers: SELECT * from table1 → SELECT * from db1.table1
|
14410
|
+
*/
|
14411
|
+
ViewExpandedText?: ViewTextString;
|
14412
|
+
/**
|
14413
|
+
* Dialects marked as stale are no longer valid and must be updated before they can be queried in their respective query engines.
|
14414
|
+
*/
|
14415
|
+
IsStale?: NullableBoolean;
|
14416
|
+
}
|
14417
|
+
export type ViewRepresentationList = ViewRepresentation[];
|
14418
|
+
export type ViewSubObjectsList = ArnString[];
|
14361
14419
|
export type ViewTextString = string;
|
14362
14420
|
export type WorkerType = "Standard"|"G.1X"|"G.2X"|"G.025X"|"G.4X"|"G.8X"|"Z.2X"|string;
|
14363
14421
|
export interface Workflow {
|
@@ -586,6 +586,14 @@ declare namespace GroundStation {
|
|
586
586
|
* Tags assigned to a contact.
|
587
587
|
*/
|
588
588
|
tags?: TagsMap;
|
589
|
+
/**
|
590
|
+
* Projected time in UTC your satellite will set below the receive mask. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts. This field is not present for contacts with a SCHEDULING or SCHEDULED status.
|
591
|
+
*/
|
592
|
+
visibilityEndTime?: Timestamp;
|
593
|
+
/**
|
594
|
+
* Projected time in UTC your satellite will rise above the receive mask. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts. This field is not present for contacts with a SCHEDULING or SCHEDULED status.
|
595
|
+
*/
|
596
|
+
visibilityStartTime?: Timestamp;
|
589
597
|
}
|
590
598
|
export interface ContactIdResponse {
|
591
599
|
/**
|
@@ -663,11 +671,11 @@ declare namespace GroundStation {
|
|
663
671
|
}
|
664
672
|
export interface CreateMissionProfileRequest {
|
665
673
|
/**
|
666
|
-
* Amount of time after a contact ends that you’d like to receive a
|
674
|
+
* Amount of time after a contact ends that you’d like to receive a Ground Station Contact State Change event indicating the pass has finished.
|
667
675
|
*/
|
668
676
|
contactPostPassDurationSeconds?: DurationInSeconds;
|
669
677
|
/**
|
670
|
-
* Amount of time prior to contact start you’d like to receive a
|
678
|
+
* Amount of time prior to contact start you’d like to receive a Ground Station Contact State Change event indicating an upcoming pass.
|
671
679
|
*/
|
672
680
|
contactPrePassDurationSeconds?: DurationInSeconds;
|
673
681
|
/**
|
@@ -863,6 +871,14 @@ declare namespace GroundStation {
|
|
863
871
|
* Tags assigned to a contact.
|
864
872
|
*/
|
865
873
|
tags?: TagsMap;
|
874
|
+
/**
|
875
|
+
* Projected time in UTC your satellite will set below the receive mask. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts.
|
876
|
+
*/
|
877
|
+
visibilityEndTime?: Timestamp;
|
878
|
+
/**
|
879
|
+
* Projected time in UTC your satellite will rise above the receive mask. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts.
|
880
|
+
*/
|
881
|
+
visibilityStartTime?: Timestamp;
|
866
882
|
}
|
867
883
|
export interface DescribeEphemerisRequest {
|
868
884
|
/**
|
@@ -1902,11 +1918,11 @@ declare namespace GroundStation {
|
|
1902
1918
|
}
|
1903
1919
|
export interface UpdateMissionProfileRequest {
|
1904
1920
|
/**
|
1905
|
-
* Amount of time after a contact ends that you’d like to receive a
|
1921
|
+
* Amount of time after a contact ends that you’d like to receive a Ground Station Contact State Change event indicating the pass has finished.
|
1906
1922
|
*/
|
1907
1923
|
contactPostPassDurationSeconds?: DurationInSeconds;
|
1908
1924
|
/**
|
1909
|
-
* Amount of time after a contact ends that you’d like to receive a
|
1925
|
+
* Amount of time after a contact ends that you’d like to receive a Ground Station Contact State Change event indicating the pass has finished.
|
1910
1926
|
*/
|
1911
1927
|
contactPrePassDurationSeconds?: DurationInSeconds;
|
1912
1928
|
/**
|
@@ -2917,7 +2917,7 @@ declare namespace Lambda {
|
|
2917
2917
|
export type ResourceArn = string;
|
2918
2918
|
export type ResponseStreamingInvocationType = "RequestResponse"|"DryRun"|string;
|
2919
2919
|
export type RoleArn = string;
|
2920
|
-
export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"nodejs8.10"|"nodejs10.x"|"nodejs12.x"|"nodejs14.x"|"nodejs16.x"|"java8"|"java8.al2"|"java11"|"python2.7"|"python3.6"|"python3.7"|"python3.8"|"python3.9"|"dotnetcore1.0"|"dotnetcore2.0"|"dotnetcore2.1"|"dotnetcore3.1"|"dotnet6"|"dotnet8"|"nodejs4.3-edge"|"go1.x"|"ruby2.5"|"ruby2.7"|"provided"|"provided.al2"|"nodejs18.x"|"python3.10"|"java17"|"ruby3.2"|"python3.11"|"nodejs20.x"|"provided.al2023"|"python3.12"|"java21"|string;
|
2920
|
+
export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"nodejs8.10"|"nodejs10.x"|"nodejs12.x"|"nodejs14.x"|"nodejs16.x"|"java8"|"java8.al2"|"java11"|"python2.7"|"python3.6"|"python3.7"|"python3.8"|"python3.9"|"dotnetcore1.0"|"dotnetcore2.0"|"dotnetcore2.1"|"dotnetcore3.1"|"dotnet6"|"dotnet8"|"nodejs4.3-edge"|"go1.x"|"ruby2.5"|"ruby2.7"|"provided"|"provided.al2"|"nodejs18.x"|"python3.10"|"java17"|"ruby3.2"|"ruby3.3"|"python3.11"|"nodejs20.x"|"provided.al2023"|"python3.12"|"java21"|string;
|
2921
2921
|
export type RuntimeVersionArn = string;
|
2922
2922
|
export interface RuntimeVersionConfig {
|
2923
2923
|
/**
|
@@ -844,6 +844,14 @@ Note that this field and audioType are both ignored if inputType is broadcasterM
|
|
844
844
|
* Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by the player (eg. English, or Director Commentary).
|
845
845
|
*/
|
846
846
|
StreamName?: __string;
|
847
|
+
/**
|
848
|
+
* Identifies the DASH roles to assign to this audio output. Applies only when the audio output is configured for DVB DASH accessibility signaling.
|
849
|
+
*/
|
850
|
+
AudioDashRoles?: __listOfDashRoleAudio;
|
851
|
+
/**
|
852
|
+
* Identifies DVB DASH accessibility signaling in this audio output. Used in Microsoft Smooth Streaming outputs to signal accessibility information to packagers.
|
853
|
+
*/
|
854
|
+
DvbDashAccessibility?: DvbDashAccessibility;
|
847
855
|
}
|
848
856
|
export type AudioDescriptionAudioTypeControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
|
849
857
|
export type AudioDescriptionLanguageCodeControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
|
@@ -1301,6 +1309,14 @@ Alternate rendition that the client will not try to play back by default. Repres
|
|
1301
1309
|
* Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
|
1302
1310
|
*/
|
1303
1311
|
Name: __string;
|
1312
|
+
/**
|
1313
|
+
* Identifies the DASH roles to assign to this captions output. Applies only when the captions output is configured for DVB DASH accessibility signaling.
|
1314
|
+
*/
|
1315
|
+
CaptionDashRoles?: __listOfDashRoleCaption;
|
1316
|
+
/**
|
1317
|
+
* Identifies DVB DASH accessibility signaling in this captions output. Used in Microsoft Smooth Streaming outputs to signal accessibility information to packagers.
|
1318
|
+
*/
|
1319
|
+
DvbDashAccessibility?: DvbDashAccessibility;
|
1304
1320
|
}
|
1305
1321
|
export interface CaptionDestinationSettings {
|
1306
1322
|
AribDestinationSettings?: AribDestinationSettings;
|
@@ -5872,6 +5888,7 @@ the timestamps will be in Coordinated Universal Time (UTC)
|
|
5872
5888
|
MultiplexGroupSettings?: MultiplexGroupSettings;
|
5873
5889
|
RtmpGroupSettings?: RtmpGroupSettings;
|
5874
5890
|
UdpGroupSettings?: UdpGroupSettings;
|
5891
|
+
CmafIngestGroupSettings?: CmafIngestGroupSettings;
|
5875
5892
|
}
|
5876
5893
|
export interface OutputLocationRef {
|
5877
5894
|
DestinationRefId?: __string;
|
@@ -5889,6 +5906,7 @@ the timestamps will be in Coordinated Universal Time (UTC)
|
|
5889
5906
|
MultiplexOutputSettings?: MultiplexOutputSettings;
|
5890
5907
|
RtmpOutputSettings?: RtmpOutputSettings;
|
5891
5908
|
UdpOutputSettings?: UdpOutputSettings;
|
5909
|
+
CmafIngestOutputSettings?: CmafIngestOutputSettings;
|
5892
5910
|
}
|
5893
5911
|
export interface PassThroughSettings {
|
5894
5912
|
}
|
@@ -7497,6 +7515,7 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
|
|
7497
7515
|
export type __integerMin0Max100000000 = number;
|
7498
7516
|
export type __integerMin0Max128 = number;
|
7499
7517
|
export type __integerMin0Max15 = number;
|
7518
|
+
export type __integerMin0Max2000 = number;
|
7500
7519
|
export type __integerMin0Max255 = number;
|
7501
7520
|
export type __integerMin0Max30 = number;
|
7502
7521
|
export type __integerMin0Max32768 = number;
|
@@ -7733,6 +7752,46 @@ one destination per packager.
|
|
7733
7752
|
export type H265TreeblockSize = "AUTO"|"TREE_SIZE_32X32"|string;
|
7734
7753
|
export type __integerMin256Max3840 = number;
|
7735
7754
|
export type __integerMin64Max2160 = number;
|
7755
|
+
export interface CmafIngestGroupSettings {
|
7756
|
+
/**
|
7757
|
+
* A HTTP destination for the tracks
|
7758
|
+
*/
|
7759
|
+
Destination: OutputLocationRef;
|
7760
|
+
/**
|
7761
|
+
* If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
|
7762
|
+
*/
|
7763
|
+
NielsenId3Behavior?: CmafNielsenId3Behavior;
|
7764
|
+
/**
|
7765
|
+
* Type of scte35 track to add. none or scte35WithoutSegmentation
|
7766
|
+
*/
|
7767
|
+
Scte35Type?: Scte35Type;
|
7768
|
+
/**
|
7769
|
+
* The nominal duration of segments. The units are specified in SegmentLengthUnits. The segments will end on the next keyframe after the specified duration, so the actual segment length might be longer, and it might be a fraction of the units.
|
7770
|
+
*/
|
7771
|
+
SegmentLength?: __integerMin1;
|
7772
|
+
/**
|
7773
|
+
* Time unit for segment length parameter.
|
7774
|
+
*/
|
7775
|
+
SegmentLengthUnits?: CmafIngestSegmentLengthUnits;
|
7776
|
+
/**
|
7777
|
+
* Number of milliseconds to delay the output from the second pipeline.
|
7778
|
+
*/
|
7779
|
+
SendDelayMs?: __integerMin0Max2000;
|
7780
|
+
}
|
7781
|
+
export interface CmafIngestOutputSettings {
|
7782
|
+
/**
|
7783
|
+
* String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
|
7784
|
+
*/
|
7785
|
+
NameModifier?: __string;
|
7786
|
+
}
|
7787
|
+
export type CmafIngestSegmentLengthUnits = "MILLISECONDS"|"SECONDS"|string;
|
7788
|
+
export type CmafNielsenId3Behavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
|
7789
|
+
export type DashRoleAudio = "ALTERNATE"|"COMMENTARY"|"DESCRIPTION"|"DUB"|"EMERGENCY"|"ENHANCED-AUDIO-INTELLIGIBILITY"|"KARAOKE"|"MAIN"|"SUPPLEMENTARY"|string;
|
7790
|
+
export type DashRoleCaption = "ALTERNATE"|"CAPTION"|"COMMENTARY"|"DESCRIPTION"|"DUB"|"EASYREADER"|"EMERGENCY"|"FORCED-SUBTITLE"|"KARAOKE"|"MAIN"|"METADATA"|"SUBTITLE"|"SUPPLEMENTARY"|string;
|
7791
|
+
export type DvbDashAccessibility = "DVBDASH_1_VISUALLY_IMPAIRED"|"DVBDASH_2_HARD_OF_HEARING"|"DVBDASH_3_SUPPLEMENTAL_COMMENTARY"|"DVBDASH_4_DIRECTORS_COMMENTARY"|"DVBDASH_5_EDUCATIONAL_NOTES"|"DVBDASH_6_MAIN_PROGRAM"|"DVBDASH_7_CLEAN_FEED"|string;
|
7792
|
+
export type __listOfDashRoleAudio = DashRoleAudio[];
|
7793
|
+
export type __listOfDashRoleCaption = DashRoleCaption[];
|
7794
|
+
export type Scte35Type = "NONE"|"SCTE_35_WITHOUT_SEGMENTATION"|string;
|
7736
7795
|
/**
|
7737
7796
|
* 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.
|
7738
7797
|
*/
|
@@ -45,11 +45,11 @@ declare class MedicalImaging extends Service {
|
|
45
45
|
*/
|
46
46
|
deleteImageSet(callback?: (err: AWSError, data: MedicalImaging.Types.DeleteImageSetResponse) => void): Request<MedicalImaging.Types.DeleteImageSetResponse, AWSError>;
|
47
47
|
/**
|
48
|
-
* Get the import job properties to learn more about the job or job progress.
|
48
|
+
* Get the import job properties to learn more about the job or job progress. The jobStatus refers to the execution of the import job. Therefore, an import job can return a jobStatus as COMPLETED even if validation issues are discovered during the import process. If a jobStatus returns as COMPLETED, we still recommend you review the output manifests written to S3, as they provide details on the success or failure of individual P10 object imports.
|
49
49
|
*/
|
50
50
|
getDICOMImportJob(params: MedicalImaging.Types.GetDICOMImportJobRequest, callback?: (err: AWSError, data: MedicalImaging.Types.GetDICOMImportJobResponse) => void): Request<MedicalImaging.Types.GetDICOMImportJobResponse, AWSError>;
|
51
51
|
/**
|
52
|
-
* Get the import job properties to learn more about the job or job progress.
|
52
|
+
* Get the import job properties to learn more about the job or job progress. The jobStatus refers to the execution of the import job. Therefore, an import job can return a jobStatus as COMPLETED even if validation issues are discovered during the import process. If a jobStatus returns as COMPLETED, we still recommend you review the output manifests written to S3, as they provide details on the success or failure of individual P10 object imports.
|
53
53
|
*/
|
54
54
|
getDICOMImportJob(callback?: (err: AWSError, data: MedicalImaging.Types.GetDICOMImportJobResponse) => void): Request<MedicalImaging.Types.GetDICOMImportJobResponse, AWSError>;
|
55
55
|
/**
|
@@ -387,6 +387,10 @@ declare namespace MedicalImaging {
|
|
387
387
|
export type DICOMPatientId = string;
|
388
388
|
export type DICOMPatientName = string;
|
389
389
|
export type DICOMPatientSex = string;
|
390
|
+
export type DICOMSeriesBodyPart = string;
|
391
|
+
export type DICOMSeriesInstanceUID = string;
|
392
|
+
export type DICOMSeriesModality = string;
|
393
|
+
export type DICOMSeriesNumber = number;
|
390
394
|
export type DICOMStudyDate = string;
|
391
395
|
export interface DICOMStudyDateAndTime {
|
392
396
|
/**
|
@@ -420,15 +424,15 @@ declare namespace MedicalImaging {
|
|
420
424
|
*/
|
421
425
|
DICOMPatientSex?: DICOMPatientSex;
|
422
426
|
/**
|
423
|
-
* The DICOM provided identifier for
|
427
|
+
* The DICOM provided identifier for the Study Instance UID.
|
424
428
|
*/
|
425
429
|
DICOMStudyInstanceUID?: DICOMStudyInstanceUID;
|
426
430
|
/**
|
427
|
-
* The DICOM provided
|
431
|
+
* The DICOM provided identifier for the Study ID.
|
428
432
|
*/
|
429
433
|
DICOMStudyId?: DICOMStudyId;
|
430
434
|
/**
|
431
|
-
* The
|
435
|
+
* The DICOM provided Study Description.
|
432
436
|
*/
|
433
437
|
DICOMStudyDescription?: DICOMStudyDescription;
|
434
438
|
/**
|
@@ -443,6 +447,22 @@ declare namespace MedicalImaging {
|
|
443
447
|
* The accession number for the DICOM study.
|
444
448
|
*/
|
445
449
|
DICOMAccessionNumber?: DICOMAccessionNumber;
|
450
|
+
/**
|
451
|
+
* The DICOM provided identifier for the Series Instance UID.
|
452
|
+
*/
|
453
|
+
DICOMSeriesInstanceUID?: DICOMSeriesInstanceUID;
|
454
|
+
/**
|
455
|
+
* The DICOM provided identifier for the series Modality.
|
456
|
+
*/
|
457
|
+
DICOMSeriesModality?: DICOMSeriesModality;
|
458
|
+
/**
|
459
|
+
* The DICOM provided identifier for the series Body Part Examined.
|
460
|
+
*/
|
461
|
+
DICOMSeriesBodyPart?: DICOMSeriesBodyPart;
|
462
|
+
/**
|
463
|
+
* The DICOM provided identifier for the Series Number.
|
464
|
+
*/
|
465
|
+
DICOMSeriesNumber?: DICOMSeriesNumber;
|
446
466
|
/**
|
447
467
|
* The study date.
|
448
468
|
*/
|
@@ -902,10 +922,18 @@ declare namespace MedicalImaging {
|
|
902
922
|
* The DICOM study instance UID for search.
|
903
923
|
*/
|
904
924
|
DICOMStudyInstanceUID?: DICOMStudyInstanceUID;
|
925
|
+
/**
|
926
|
+
* The Series Instance UID input for search.
|
927
|
+
*/
|
928
|
+
DICOMSeriesInstanceUID?: DICOMSeriesInstanceUID;
|
905
929
|
/**
|
906
930
|
* The created at time of the image set provided for search.
|
907
931
|
*/
|
908
932
|
createdAt?: _Date;
|
933
|
+
/**
|
934
|
+
* The timestamp input for search.
|
935
|
+
*/
|
936
|
+
updatedAt?: _Date;
|
909
937
|
/**
|
910
938
|
* The aggregated structure containing DICOM study date and study time for search.
|
911
939
|
*/
|
@@ -916,6 +944,10 @@ declare namespace MedicalImaging {
|
|
916
944
|
* The filters for the search criteria.
|
917
945
|
*/
|
918
946
|
filters?: SearchCriteriaFiltersList;
|
947
|
+
/**
|
948
|
+
* The sort input for search criteria.
|
949
|
+
*/
|
950
|
+
sort?: Sort;
|
919
951
|
}
|
920
952
|
export type SearchCriteriaFiltersList = SearchFilter[];
|
921
953
|
export interface SearchFilter {
|
@@ -953,11 +985,27 @@ declare namespace MedicalImaging {
|
|
953
985
|
* The model containing the image set results.
|
954
986
|
*/
|
955
987
|
imageSetsMetadataSummaries: ImageSetsMetadataSummaries;
|
988
|
+
/**
|
989
|
+
* The sort order for image set search results.
|
990
|
+
*/
|
991
|
+
sort?: Sort;
|
956
992
|
/**
|
957
993
|
* The token for pagination results.
|
958
994
|
*/
|
959
995
|
nextToken?: NextToken;
|
960
996
|
}
|
997
|
+
export interface Sort {
|
998
|
+
/**
|
999
|
+
* The sort order for search criteria.
|
1000
|
+
*/
|
1001
|
+
sortOrder: SortOrder;
|
1002
|
+
/**
|
1003
|
+
* The sort field for search criteria.
|
1004
|
+
*/
|
1005
|
+
sortField: SortField;
|
1006
|
+
}
|
1007
|
+
export type SortField = "updatedAt"|"createdAt"|"DICOMStudyDateAndTime"|string;
|
1008
|
+
export type SortOrder = "ASC"|"DESC"|string;
|
961
1009
|
export interface StartDICOMImportJobRequest {
|
962
1010
|
/**
|
963
1011
|
* The import job name.
|
@@ -242,7 +242,7 @@ declare namespace RolesAnywhere {
|
|
242
242
|
export type Boolean = boolean;
|
243
243
|
export interface CreateProfileRequest {
|
244
244
|
/**
|
245
|
-
* Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details.
|
245
|
+
* Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600.
|
246
246
|
*/
|
247
247
|
durationSeconds?: CreateProfileRequestDurationSecondsInteger;
|
248
248
|
/**
|
@@ -541,7 +541,7 @@ declare namespace RolesAnywhere {
|
|
541
541
|
*/
|
542
542
|
createdBy?: String;
|
543
543
|
/**
|
544
|
-
* Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details.
|
544
|
+
* Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600.
|
545
545
|
*/
|
546
546
|
durationSeconds?: Integer;
|
547
547
|
/**
|
@@ -837,7 +837,7 @@ declare namespace RolesAnywhere {
|
|
837
837
|
export type UpdateCrlRequestCrlDataBlob = Buffer|Uint8Array|Blob|string;
|
838
838
|
export interface UpdateProfileRequest {
|
839
839
|
/**
|
840
|
-
* Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details.
|
840
|
+
* Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600.
|
841
841
|
*/
|
842
842
|
durationSeconds?: UpdateProfileRequestDurationSecondsInteger;
|
843
843
|
/**
|