aws-sdk 2.1591.0 → 2.1593.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. package/README.md +1 -1
  2. package/apis/cleanrooms-2022-02-17.min.json +366 -265
  3. package/apis/cleanroomsml-2023-09-06.min.json +7 -24
  4. package/apis/cloudformation-2010-05-15.min.json +43 -42
  5. package/apis/datazone-2018-05-10.min.json +611 -324
  6. package/apis/datazone-2018-05-10.paginators.json +6 -0
  7. package/apis/docdb-2014-10-31.min.json +22 -0
  8. package/apis/emr-containers-2020-10-01.min.json +5 -0
  9. package/apis/groundstation-2019-05-23.min.json +12 -0
  10. package/apis/ivs-2020-07-14.min.json +76 -66
  11. package/apis/medialive-2017-10-14.min.json +287 -232
  12. package/apis/medical-imaging-2023-07-19.min.json +50 -8
  13. package/apis/transfer-2018-11-05.min.json +90 -79
  14. package/apis/verifiedpermissions-2021-12-01.min.json +127 -82
  15. package/clients/b2bi.d.ts +2 -2
  16. package/clients/cleanrooms.d.ts +101 -4
  17. package/clients/cleanroomsml.d.ts +13 -30
  18. package/clients/cloudformation.d.ts +5 -0
  19. package/clients/datazone.d.ts +303 -2
  20. package/clients/docdb.d.ts +21 -0
  21. package/clients/ec2.d.ts +1 -1
  22. package/clients/emrcontainers.d.ts +5 -0
  23. package/clients/groundstation.d.ts +20 -4
  24. package/clients/ivs.d.ts +18 -2
  25. package/clients/lambda.d.ts +1 -1
  26. package/clients/medialive.d.ts +59 -0
  27. package/clients/medicalimaging.d.ts +53 -5
  28. package/clients/transfer.d.ts +42 -14
  29. package/clients/verifiedpermissions.d.ts +51 -6
  30. package/dist/aws-sdk-core-react-native.js +1 -1
  31. package/dist/aws-sdk-react-native.js +17 -14
  32. package/dist/aws-sdk.js +46 -45
  33. package/dist/aws-sdk.min.js +54 -54
  34. package/lib/core.js +1 -1
  35. package/lib/services/cloudsearchdomain.js +3 -0
  36. package/package.json +1 -1
package/clients/ivs.d.ts CHANGED
@@ -446,6 +446,10 @@ declare namespace IVS {
446
446
  * Recording-configuration ARN. A valid ARN value here both specifies the ARN and enables recording. Default: "" (empty string, recording is disabled).
447
447
  */
448
448
  recordingConfigurationArn?: ChannelRecordingConfigurationArn;
449
+ /**
450
+ * Specifies the endpoint and optional passphrase for streaming with the SRT protocol.
451
+ */
452
+ srt?: Srt;
449
453
  /**
450
454
  * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
451
455
  */
@@ -512,7 +516,7 @@ declare namespace IVS {
512
516
  */
513
517
  authorized?: Boolean;
514
518
  /**
515
- * Whether the channel allows insecure RTMP ingest. Default: false.
519
+ * Whether the channel allows insecure RTMP and SRT ingest. Default: false.
516
520
  */
517
521
  insecureIngest?: Boolean;
518
522
  /**
@@ -1164,6 +1168,18 @@ declare namespace IVS {
1164
1168
  */
1165
1169
  bucketName: S3DestinationBucketName;
1166
1170
  }
1171
+ export interface Srt {
1172
+ /**
1173
+ * The endpoint to be used when streaming with IVS using the SRT protocol.
1174
+ */
1175
+ endpoint?: SrtEndpoint;
1176
+ /**
1177
+ * Auto-generated passphrase to enable encryption. This field is applicable only if the end user has not enabled the insecureIngest option for the channel.
1178
+ */
1179
+ passphrase?: SrtPassphrase;
1180
+ }
1181
+ export type SrtEndpoint = string;
1182
+ export type SrtPassphrase = string;
1167
1183
  export interface StartViewerSessionRevocationRequest {
1168
1184
  /**
1169
1185
  * The ARN of the channel associated with the viewer session to revoke.
@@ -1421,7 +1437,7 @@ declare namespace IVS {
1421
1437
  */
1422
1438
  authorized?: Boolean;
1423
1439
  /**
1424
- * Whether the channel allows insecure RTMP ingest. Default: false.
1440
+ * Whether the channel allows insecure RTMP and SRT ingest. Default: false.
1425
1441
  */
1426
1442
  insecureIngest?: Boolean;
1427
1443
  /**
@@ -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 studyInstanceUid.&gt;
427
+ * The DICOM provided identifier for the Study Instance UID.
424
428
  */
425
429
  DICOMStudyInstanceUID?: DICOMStudyInstanceUID;
426
430
  /**
427
- * The DICOM provided studyId.
431
+ * The DICOM provided identifier for the Study ID.
428
432
  */
429
433
  DICOMStudyId?: DICOMStudyId;
430
434
  /**
431
- * The description of the study.
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 file transfer protocol-enabled server. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies.
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 file transfer protocol-enabled server. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies.
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 file transfer protocol-enabled servers.
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 file transfer protocol-enabled servers.
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 that is attached to the server.
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
- * Specifies the name of the security policy that is attached to the server.
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
- * Specifies the name of the security policy that is attached to the server.
1441
+ * The text name of the specified security policy.
1433
1442
  */
1434
1443
  SecurityPolicyName: SecurityPolicyName;
1435
1444
  /**
1436
- * Specifies the enabled Secure Shell (SSH) cipher encryption algorithms in the security policy that is attached to the server.
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
- * Specifies the enabled SSH key exchange (KEX) encryption algorithms in the security policy that is attached to the server.
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
- * Specifies the enabled SSH message authentication code (MAC) encryption algorithms in the security policy that is attached to the server.
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
- * Specifies the enabled Transport Layer Security (TLS) cipher encryption algorithms in the security policy that is attached to the server.
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 that is attached to the server.
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 that is attached to the server.
2982
+ * Specifies the name of the security policy for the server.
2955
2983
  */
2956
2984
  SecurityPolicyName?: SecurityPolicyName;
2957
2985
  /**
@@ -271,11 +271,11 @@ declare namespace VerifiedPermissions {
271
271
  */
272
272
  principal?: EntityIdentifier;
273
273
  /**
274
- * Specifies the requested action to be authorized. For example, is the principal authorized to perform this action on the resource?
274
+ * Specifies the requested action to be authorized. For example, PhotoFlash::ReadPhoto.
275
275
  */
276
276
  action?: ActionIdentifier;
277
277
  /**
278
- * Specifies the resource for which the authorization decision is to be made.
278
+ * Specifies the resource that you want an authorization decision for. For example, PhotoFlash::Photo.
279
279
  */
280
280
  resource?: EntityIdentifier;
281
281
  /**
@@ -304,7 +304,7 @@ declare namespace VerifiedPermissions {
304
304
  */
305
305
  determiningPolicies: DeterminingPolicyList;
306
306
  /**
307
- * Errors that occurred while making an authorization decision, for example, a policy references an Entity or entity Attribute that does not exist in the slice.
307
+ * Errors that occurred while making an authorization decision. For example, a policy might reference an entity or attribute that doesn't exist in the request.
308
308
  */
309
309
  errors: EvaluationErrorList;
310
310
  }
@@ -313,6 +313,24 @@ declare namespace VerifiedPermissions {
313
313
  export type BooleanAttribute = boolean;
314
314
  export type ClientId = string;
315
315
  export type ClientIds = ClientId[];
316
+ export interface CognitoGroupConfiguration {
317
+ /**
318
+ * The name of the schema entity type that's mapped to the user pool group. Defaults to AWS::CognitoGroup.
319
+ */
320
+ groupEntityType: GroupEntityType;
321
+ }
322
+ export interface CognitoGroupConfigurationDetail {
323
+ /**
324
+ * The name of the schema entity type that's mapped to the user pool group. Defaults to AWS::CognitoGroup.
325
+ */
326
+ groupEntityType?: GroupEntityType;
327
+ }
328
+ export interface CognitoGroupConfigurationItem {
329
+ /**
330
+ * The name of the schema entity type that's mapped to the user pool group. Defaults to AWS::CognitoGroup.
331
+ */
332
+ groupEntityType?: GroupEntityType;
333
+ }
316
334
  export interface CognitoUserPoolConfiguration {
317
335
  /**
318
336
  * The Amazon Resource Name (ARN) of the Amazon Cognito user pool that contains the identities to be authorized. Example: "UserPoolArn": "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5"
@@ -322,6 +340,10 @@ declare namespace VerifiedPermissions {
322
340
  * The unique application client IDs that are associated with the specified Amazon Cognito user pool. Example: "ClientIds": ["&amp;ExampleCogClientId;"]
323
341
  */
324
342
  clientIds?: ClientIds;
343
+ /**
344
+ * The type of entity that a policy store maps to groups from an Amazon Cognito user pool identity source.
345
+ */
346
+ groupConfiguration?: CognitoGroupConfiguration;
325
347
  }
326
348
  export interface CognitoUserPoolConfigurationDetail {
327
349
  /**
@@ -336,6 +358,10 @@ declare namespace VerifiedPermissions {
336
358
  * The OpenID Connect (OIDC) issuer ID of the Amazon Cognito user pool that contains the identities to be authorized. Example: "issuer": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_1a2b3c4d5"
337
359
  */
338
360
  issuer: Issuer;
361
+ /**
362
+ * The type of entity that a policy store maps to groups from an Amazon Cognito user pool identity source.
363
+ */
364
+ groupConfiguration?: CognitoGroupConfigurationDetail;
339
365
  }
340
366
  export interface CognitoUserPoolConfigurationItem {
341
367
  /**
@@ -350,22 +376,26 @@ declare namespace VerifiedPermissions {
350
376
  * The OpenID Connect (OIDC) issuer ID of the Amazon Cognito user pool that contains the identities to be authorized. Example: "issuer": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_1a2b3c4d5"
351
377
  */
352
378
  issuer: Issuer;
379
+ /**
380
+ * The type of entity that a policy store maps to groups from an Amazon Cognito user pool identity source.
381
+ */
382
+ groupConfiguration?: CognitoGroupConfigurationItem;
353
383
  }
354
384
  export interface Configuration {
355
385
  /**
356
- * Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"]}}
386
+ * Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"],"groupConfiguration": {"groupEntityType": "MyCorp::Group"}}}
357
387
  */
358
388
  cognitoUserPoolConfiguration?: CognitoUserPoolConfiguration;
359
389
  }
360
390
  export interface ConfigurationDetail {
361
391
  /**
362
- * Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"]}}
392
+ * Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool, the policy store entity that you want to assign to user groups, and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"],"groupConfiguration": {"groupEntityType": "MyCorp::Group"}}}
363
393
  */
364
394
  cognitoUserPoolConfiguration?: CognitoUserPoolConfigurationDetail;
365
395
  }
366
396
  export interface ConfigurationItem {
367
397
  /**
368
- * Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"]}}
398
+ * Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool, the policy store entity that you want to assign to user groups, and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"],"groupConfiguration": {"groupEntityType": "MyCorp::Group"}}}
369
399
  */
370
400
  cognitoUserPoolConfiguration?: CognitoUserPoolConfigurationItem;
371
401
  }
@@ -808,6 +838,7 @@ declare namespace VerifiedPermissions {
808
838
  */
809
839
  namespaces?: NamespaceList;
810
840
  }
841
+ export type GroupEntityType = string;
811
842
  export type IdempotencyToken = string;
812
843
  export interface IdentitySourceDetails {
813
844
  /**
@@ -967,6 +998,10 @@ declare namespace VerifiedPermissions {
967
998
  * Errors that occurred while making an authorization decision. For example, a policy references an entity or entity attribute that does not exist in the slice.
968
999
  */
969
1000
  errors: EvaluationErrorList;
1001
+ /**
1002
+ * The identifier of the principal in the ID or access token.
1003
+ */
1004
+ principal?: EntityIdentifier;
970
1005
  }
971
1006
  export type Issuer = string;
972
1007
  export interface ListIdentitySourcesInput {
@@ -1325,6 +1360,12 @@ declare namespace VerifiedPermissions {
1325
1360
  }
1326
1361
  export type TimestampFormat = Date;
1327
1362
  export type Token = string;
1363
+ export interface UpdateCognitoGroupConfiguration {
1364
+ /**
1365
+ * The name of the schema entity type that's mapped to the user pool group. Defaults to AWS::CognitoGroup.
1366
+ */
1367
+ groupEntityType: GroupEntityType;
1368
+ }
1328
1369
  export interface UpdateCognitoUserPoolConfiguration {
1329
1370
  /**
1330
1371
  * The Amazon Resource Name (ARN) of the Amazon Cognito user pool associated with this identity source.
@@ -1334,6 +1375,10 @@ declare namespace VerifiedPermissions {
1334
1375
  * The client ID of an app client that is configured for the specified Amazon Cognito user pool.
1335
1376
  */
1336
1377
  clientIds?: ClientIds;
1378
+ /**
1379
+ * The configuration of the user groups from an Amazon Cognito user pool identity source.
1380
+ */
1381
+ groupConfiguration?: UpdateCognitoGroupConfiguration;
1337
1382
  }
1338
1383
  export interface UpdateConfiguration {
1339
1384
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1591.0',
86
+ VERSION: '2.1593.0',
87
87
 
88
88
  /**
89
89
  * @api private