cdk-lambda-subminute 2.0.421 → 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 +3 -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/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/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/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 +13 -10
- 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
@@ -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.
|
@@ -205,11 +205,11 @@ declare class Transfer extends Service {
|
|
205
205
|
*/
|
206
206
|
describeProfile(callback?: (err: AWSError, data: Transfer.Types.DescribeProfileResponse) => void): Request<Transfer.Types.DescribeProfileResponse, AWSError>;
|
207
207
|
/**
|
208
|
-
* Describes the security policy that is attached to your
|
208
|
+
* Describes the security policy that is attached to your server or SFTP connector. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
|
209
209
|
*/
|
210
210
|
describeSecurityPolicy(params: Transfer.Types.DescribeSecurityPolicyRequest, callback?: (err: AWSError, data: Transfer.Types.DescribeSecurityPolicyResponse) => void): Request<Transfer.Types.DescribeSecurityPolicyResponse, AWSError>;
|
211
211
|
/**
|
212
|
-
* Describes the security policy that is attached to your
|
212
|
+
* Describes the security policy that is attached to your server or SFTP connector. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
|
213
213
|
*/
|
214
214
|
describeSecurityPolicy(callback?: (err: AWSError, data: Transfer.Types.DescribeSecurityPolicyResponse) => void): Request<Transfer.Types.DescribeSecurityPolicyResponse, AWSError>;
|
215
215
|
/**
|
@@ -317,11 +317,11 @@ declare class Transfer extends Service {
|
|
317
317
|
*/
|
318
318
|
listProfiles(callback?: (err: AWSError, data: Transfer.Types.ListProfilesResponse) => void): Request<Transfer.Types.ListProfilesResponse, AWSError>;
|
319
319
|
/**
|
320
|
-
* Lists the security policies that are attached to your
|
320
|
+
* Lists the security policies that are attached to your servers and SFTP connectors. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
|
321
321
|
*/
|
322
322
|
listSecurityPolicies(params: Transfer.Types.ListSecurityPoliciesRequest, callback?: (err: AWSError, data: Transfer.Types.ListSecurityPoliciesResponse) => void): Request<Transfer.Types.ListSecurityPoliciesResponse, AWSError>;
|
323
323
|
/**
|
324
|
-
* Lists the security policies that are attached to your
|
324
|
+
* Lists the security policies that are attached to your servers and SFTP connectors. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
|
325
325
|
*/
|
326
326
|
listSecurityPolicies(callback?: (err: AWSError, data: Transfer.Types.ListSecurityPoliciesResponse) => void): Request<Transfer.Types.ListSecurityPoliciesResponse, AWSError>;
|
327
327
|
/**
|
@@ -562,6 +562,7 @@ declare namespace Transfer {
|
|
562
562
|
export type CertificateUsageType = "SIGNING"|"ENCRYPTION"|string;
|
563
563
|
export type CompressionEnum = "ZLIB"|"DISABLED"|string;
|
564
564
|
export type ConnectorId = string;
|
565
|
+
export type ConnectorSecurityPolicyName = string;
|
565
566
|
export interface CopyStepDetails {
|
566
567
|
/**
|
567
568
|
* The name of the step, used as an identifier.
|
@@ -686,6 +687,10 @@ declare namespace Transfer {
|
|
686
687
|
* A structure that contains the parameters for an SFTP connector object.
|
687
688
|
*/
|
688
689
|
SftpConfig?: SftpConnectorConfig;
|
690
|
+
/**
|
691
|
+
* Specifies the name of the security policy for the connector.
|
692
|
+
*/
|
693
|
+
SecurityPolicyName?: ConnectorSecurityPolicyName;
|
689
694
|
}
|
690
695
|
export interface CreateConnectorResponse {
|
691
696
|
/**
|
@@ -767,7 +772,7 @@ declare namespace Transfer {
|
|
767
772
|
*/
|
768
773
|
ProtocolDetails?: ProtocolDetails;
|
769
774
|
/**
|
770
|
-
* Specifies the name of the security policy
|
775
|
+
* Specifies the name of the security policy for the server.
|
771
776
|
*/
|
772
777
|
SecurityPolicyName?: SecurityPolicyName;
|
773
778
|
/**
|
@@ -1117,7 +1122,7 @@ declare namespace Transfer {
|
|
1117
1122
|
}
|
1118
1123
|
export interface DescribeSecurityPolicyRequest {
|
1119
1124
|
/**
|
1120
|
-
*
|
1125
|
+
* Specify the text name of the security policy for which you want the details.
|
1121
1126
|
*/
|
1122
1127
|
SecurityPolicyName: SecurityPolicyName;
|
1123
1128
|
}
|
@@ -1335,6 +1340,10 @@ declare namespace Transfer {
|
|
1335
1340
|
* The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
|
1336
1341
|
*/
|
1337
1342
|
ServiceManagedEgressIpAddresses?: ServiceManagedEgressIpAddresses;
|
1343
|
+
/**
|
1344
|
+
* The text name of the security policy for the specified connector.
|
1345
|
+
*/
|
1346
|
+
SecurityPolicyName?: ConnectorSecurityPolicyName;
|
1338
1347
|
}
|
1339
1348
|
export interface DescribedExecution {
|
1340
1349
|
/**
|
@@ -1425,29 +1434,41 @@ declare namespace Transfer {
|
|
1425
1434
|
}
|
1426
1435
|
export interface DescribedSecurityPolicy {
|
1427
1436
|
/**
|
1428
|
-
* Specifies whether this policy enables Federal Information Processing Standards (FIPS).
|
1437
|
+
* Specifies whether this policy enables Federal Information Processing Standards (FIPS). This parameter applies to both server and connector security policies.
|
1429
1438
|
*/
|
1430
1439
|
Fips?: Fips;
|
1431
1440
|
/**
|
1432
|
-
*
|
1441
|
+
* The text name of the specified security policy.
|
1433
1442
|
*/
|
1434
1443
|
SecurityPolicyName: SecurityPolicyName;
|
1435
1444
|
/**
|
1436
|
-
*
|
1445
|
+
* Lists the enabled Secure Shell (SSH) cipher encryption algorithms in the security policy that is attached to the server or connector. This parameter applies to both server and connector security policies.
|
1437
1446
|
*/
|
1438
1447
|
SshCiphers?: SecurityPolicyOptions;
|
1439
1448
|
/**
|
1440
|
-
*
|
1449
|
+
* Lists the enabled SSH key exchange (KEX) encryption algorithms in the security policy that is attached to the server or connector. This parameter applies to both server and connector security policies.
|
1441
1450
|
*/
|
1442
1451
|
SshKexs?: SecurityPolicyOptions;
|
1443
1452
|
/**
|
1444
|
-
*
|
1453
|
+
* Lists the enabled SSH message authentication code (MAC) encryption algorithms in the security policy that is attached to the server or connector. This parameter applies to both server and connector security policies.
|
1445
1454
|
*/
|
1446
1455
|
SshMacs?: SecurityPolicyOptions;
|
1447
1456
|
/**
|
1448
|
-
*
|
1457
|
+
* Lists the enabled Transport Layer Security (TLS) cipher encryption algorithms in the security policy that is attached to the server. This parameter only applies to security policies for servers.
|
1449
1458
|
*/
|
1450
1459
|
TlsCiphers?: SecurityPolicyOptions;
|
1460
|
+
/**
|
1461
|
+
* Lists the host key algorithms for the security policy. This parameter only applies to security policies for connectors.
|
1462
|
+
*/
|
1463
|
+
SshHostKeyAlgorithms?: SecurityPolicyOptions;
|
1464
|
+
/**
|
1465
|
+
* The resource type to which the security policy applies, either server or connector.
|
1466
|
+
*/
|
1467
|
+
Type?: SecurityPolicyResourceType;
|
1468
|
+
/**
|
1469
|
+
* Lists the file transfer protocols that the security policy applies to.
|
1470
|
+
*/
|
1471
|
+
Protocols?: SecurityPolicyProtocols;
|
1451
1472
|
}
|
1452
1473
|
export interface DescribedServer {
|
1453
1474
|
/**
|
@@ -1503,7 +1524,7 @@ declare namespace Transfer {
|
|
1503
1524
|
*/
|
1504
1525
|
Protocols?: Protocols;
|
1505
1526
|
/**
|
1506
|
-
* Specifies the name of the security policy
|
1527
|
+
* Specifies the name of the security policy for the server.
|
1507
1528
|
*/
|
1508
1529
|
SecurityPolicyName?: SecurityPolicyName;
|
1509
1530
|
/**
|
@@ -2510,6 +2531,9 @@ declare namespace Transfer {
|
|
2510
2531
|
export type SecurityPolicyNames = SecurityPolicyName[];
|
2511
2532
|
export type SecurityPolicyOption = string;
|
2512
2533
|
export type SecurityPolicyOptions = SecurityPolicyOption[];
|
2534
|
+
export type SecurityPolicyProtocol = "SFTP"|"FTPS"|string;
|
2535
|
+
export type SecurityPolicyProtocols = SecurityPolicyProtocol[];
|
2536
|
+
export type SecurityPolicyResourceType = "SERVER"|"CONNECTOR"|string;
|
2513
2537
|
export interface SendWorkflowStepStateRequest {
|
2514
2538
|
/**
|
2515
2539
|
* A unique identifier for the workflow.
|
@@ -2862,6 +2886,10 @@ declare namespace Transfer {
|
|
2862
2886
|
* A structure that contains the parameters for an SFTP connector object.
|
2863
2887
|
*/
|
2864
2888
|
SftpConfig?: SftpConnectorConfig;
|
2889
|
+
/**
|
2890
|
+
* Specifies the name of the security policy for the connector.
|
2891
|
+
*/
|
2892
|
+
SecurityPolicyName?: ConnectorSecurityPolicyName;
|
2865
2893
|
}
|
2866
2894
|
export interface UpdateConnectorResponse {
|
2867
2895
|
/**
|
@@ -2951,7 +2979,7 @@ declare namespace Transfer {
|
|
2951
2979
|
*/
|
2952
2980
|
Protocols?: Protocols;
|
2953
2981
|
/**
|
2954
|
-
* Specifies the name of the security policy
|
2982
|
+
* Specifies the name of the security policy for the server.
|
2955
2983
|
*/
|
2956
2984
|
SecurityPolicyName?: SecurityPolicyName;
|
2957
2985
|
/**
|