aws-sdk 2.1415.0 → 2.1417.0

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/clients/ivs.d.ts CHANGED
@@ -514,6 +514,10 @@ declare namespace IVS {
514
514
  * If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together. Default: 0.
515
515
  */
516
516
  recordingReconnectWindowSeconds?: RecordingReconnectWindowSeconds;
517
+ /**
518
+ * Object that describes which renditions should be recorded for a stream.
519
+ */
520
+ renditionConfiguration?: RenditionConfiguration;
517
521
  /**
518
522
  * 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.
519
523
  */
@@ -910,6 +914,10 @@ declare namespace IVS {
910
914
  * If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together. Default: 0.
911
915
  */
912
916
  recordingReconnectWindowSeconds?: RecordingReconnectWindowSeconds;
917
+ /**
918
+ * Object that describes which renditions should be recorded for a stream.
919
+ */
920
+ renditionConfiguration?: RenditionConfiguration;
913
921
  /**
914
922
  * Indicates the current state of the recording configuration. When the state is ACTIVE, the configuration is ready for recording a channel stream.
915
923
  */
@@ -951,6 +959,19 @@ declare namespace IVS {
951
959
  }
952
960
  export type RecordingMode = "DISABLED"|"INTERVAL"|string;
953
961
  export type RecordingReconnectWindowSeconds = number;
962
+ export interface RenditionConfiguration {
963
+ /**
964
+ * Indicates which set of renditions are recorded for a stream. For BASIC channels, the CUSTOM value has no effect. If CUSTOM is specified, a set of renditions must be specified in the renditions field. Default: ALL.
965
+ */
966
+ renditionSelection?: RenditionConfigurationRenditionSelection;
967
+ /**
968
+ * Indicates which renditions are recorded for a stream, if renditionSelection is CUSTOM; otherwise, this field is irrelevant. The selected renditions are recorded if they are available during the stream. If a selected rendition is unavailable, the best available rendition is recorded. For details on the resolution dimensions of each rendition, see Auto-Record to Amazon S3.
969
+ */
970
+ renditions?: RenditionConfigurationRenditionList;
971
+ }
972
+ export type RenditionConfigurationRendition = "FULL_HD"|"HD"|"SD"|"LOWEST_RESOLUTION"|string;
973
+ export type RenditionConfigurationRenditionList = RenditionConfigurationRendition[];
974
+ export type RenditionConfigurationRenditionSelection = "ALL"|"NONE"|"CUSTOM"|string;
954
975
  export type ResourceArn = string;
955
976
  export type S3DestinationBucketName = string;
956
977
  export interface S3DestinationConfiguration {
@@ -1177,10 +1198,21 @@ declare namespace IVS {
1177
1198
  */
1178
1199
  recordingMode?: RecordingMode;
1179
1200
  /**
1180
- * The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if recordingMode is INTERVAL. Default: 60. Important: Setting a value for targetIntervalSeconds does not guarantee that thumbnails are generated at the specified interval. For thumbnails to be generated at the targetIntervalSeconds interval, the IDR/Keyframe value for the input video must be less than the targetIntervalSeconds value. See Amazon IVS Streaming Configuration for information on setting IDR/Keyframe to the recommended value in video-encoder settings.
1201
+ * Indicates the desired resolution of recorded thumbnails. Thumbnails are recorded at the selected resolution if the corresponding rendition is available during the stream; otherwise, they are recorded at source resolution. For more information about resolution values and their corresponding height and width dimensions, see Auto-Record to Amazon S3. Default: Null (source resolution is returned).
1202
+ */
1203
+ resolution?: ThumbnailConfigurationResolution;
1204
+ /**
1205
+ * Indicates the format in which thumbnails are recorded. SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails directory. LATEST saves the latest thumbnail in media/latest_thumbnail/thumb.jpg and overwrites it at the interval specified by targetIntervalSeconds. You can enable both SEQUENTIAL and LATEST. Default: SEQUENTIAL.
1206
+ */
1207
+ storage?: ThumbnailConfigurationStorageList;
1208
+ /**
1209
+ * The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if recordingMode is INTERVAL. Default: 60. Important: For the BASIC channel type, setting a value for targetIntervalSeconds does not guarantee that thumbnails are generated at the specified interval. For thumbnails to be generated at the targetIntervalSeconds interval, the IDR/Keyframe value for the input video must be less than the targetIntervalSeconds value. See Amazon IVS Streaming Configuration for information on setting IDR/Keyframe to the recommended value in video-encoder settings.
1181
1210
  */
1182
1211
  targetIntervalSeconds?: TargetIntervalSeconds;
1183
1212
  }
1213
+ export type ThumbnailConfigurationResolution = "FULL_HD"|"HD"|"SD"|"LOWEST_RESOLUTION"|string;
1214
+ export type ThumbnailConfigurationStorage = "SEQUENTIAL"|"LATEST"|string;
1215
+ export type ThumbnailConfigurationStorageList = ThumbnailConfigurationStorage[];
1184
1216
  export type Time = Date;
1185
1217
  export type TranscodePreset = "HIGHER_BANDWIDTH_DELIVERY"|"CONSTRAINED_BANDWIDTH_DELIVERY"|string;
1186
1218
  export interface UntagResourceRequest {
@@ -631,7 +631,7 @@ declare namespace LakeFormation {
631
631
  */
632
632
  RowFilter?: RowFilter;
633
633
  /**
634
- * A list of column names.
634
+ * A list of column names and/or nested column attributes. When specifying nested attributes, use a qualified dot (.) delimited format such as "address"."zip". Nested attributes within this list may not exceed a depth of 5.
635
635
  */
636
636
  ColumnNames?: ColumnNames;
637
637
  /**
@@ -676,6 +676,10 @@ declare namespace LakeFormation {
676
676
  * A list of Lake Formation principals. Supported principals are IAM users or IAM roles.
677
677
  */
678
678
  DataLakeAdmins?: DataLakePrincipalList;
679
+ /**
680
+ * A list of Lake Formation principals with only view access to the resources, without the ability to make changes. Supported principals are IAM users or IAM roles.
681
+ */
682
+ ReadOnlyAdmins?: DataLakePrincipalList;
679
683
  /**
680
684
  * Specifies whether access control on newly created database is managed by Lake Formation permissions or exclusively by IAM permissions. A null value indicates access control by Lake Formation permissions. A value that assigns ALL to IAM_ALLOWED_PRINCIPALS indicates access control by IAM permissions. This is referred to as the setting "Use only IAM access control," and is for backward compatibility with the Glue permission model implemented by IAM permissions. The only permitted values are an empty array or an array that contains a single JSON object that grants ALL to IAM_ALLOWED_PRINCIPALS. For more information, see Changing the Default Security Settings for Your Data Lake.
681
685
  */
@@ -693,9 +697,13 @@ declare namespace LakeFormation {
693
697
  */
694
698
  TrustedResourceOwners?: TrustedResourceOwners;
695
699
  /**
696
- * Whether to allow Amazon EMR clusters to access data managed by Lake Formation. If true, you allow Amazon EMR clusters to access data in Amazon S3 locations that are registered with Lake Formation. If false or null, no Amazon EMR clusters will be able to access data in Amazon S3 locations that are registered with Lake Formation. For more information, see (Optional) Allow Data Filtering on Amazon EMR.
700
+ * Whether to allow Amazon EMR clusters to access data managed by Lake Formation. If true, you allow Amazon EMR clusters to access data in Amazon S3 locations that are registered with Lake Formation. If false or null, no Amazon EMR clusters will be able to access data in Amazon S3 locations that are registered with Lake Formation. For more information, see (Optional) Allow external data filtering.
697
701
  */
698
702
  AllowExternalDataFiltering?: NullableBoolean;
703
+ /**
704
+ * Whether to allow a third-party query engine to get data access credentials without session tags when a caller has full data access permissions.
705
+ */
706
+ AllowFullTableExternalDataAccess?: NullableBoolean;
699
707
  /**
700
708
  * A list of the account IDs of Amazon Web Services accounts with Amazon EMR clusters that are to perform data filtering.>
701
709
  */
@@ -1110,7 +1118,7 @@ declare namespace LakeFormation {
1110
1118
  /**
1111
1119
  * A list of supported permission types for the partition. Valid values are COLUMN_PERMISSION and CELL_FILTER_PERMISSION.
1112
1120
  */
1113
- SupportedPermissionTypes: PermissionTypeList;
1121
+ SupportedPermissionTypes?: PermissionTypeList;
1114
1122
  }
1115
1123
  export interface GetTemporaryGluePartitionCredentialsResponse {
1116
1124
  /**
@@ -1150,7 +1158,7 @@ declare namespace LakeFormation {
1150
1158
  /**
1151
1159
  * A list of supported permission types for the table. Valid values are COLUMN_PERMISSION and CELL_FILTER_PERMISSION.
1152
1160
  */
1153
- SupportedPermissionTypes: PermissionTypeList;
1161
+ SupportedPermissionTypes?: PermissionTypeList;
1154
1162
  }
1155
1163
  export interface GetTemporaryGlueTableCredentialsResponse {
1156
1164
  /**
@@ -1527,9 +1535,9 @@ declare namespace LakeFormation {
1527
1535
  export type PartitionValueString = string;
1528
1536
  export type PartitionValuesList = PartitionValueString[];
1529
1537
  export type PartitionedTableObjectsList = PartitionObjects[];
1530
- export type Permission = "ALL"|"SELECT"|"ALTER"|"DROP"|"DELETE"|"INSERT"|"DESCRIBE"|"CREATE_DATABASE"|"CREATE_TABLE"|"DATA_LOCATION_ACCESS"|"CREATE_TAG"|"ASSOCIATE"|string;
1538
+ export type Permission = "ALL"|"SELECT"|"ALTER"|"DROP"|"DELETE"|"INSERT"|"DESCRIBE"|"CREATE_DATABASE"|"CREATE_TABLE"|"DATA_LOCATION_ACCESS"|"CREATE_LF_TAG"|"ASSOCIATE"|"GRANT_WITH_LF_TAG_EXPRESSION"|string;
1531
1539
  export type PermissionList = Permission[];
1532
- export type PermissionType = "COLUMN_PERMISSION"|"CELL_FILTER_PERMISSION"|string;
1540
+ export type PermissionType = "COLUMN_PERMISSION"|"CELL_FILTER_PERMISSION"|"NESTED_PERMISSION"|"NESTED_CELL_PERMISSION"|string;
1533
1541
  export type PermissionTypeList = PermissionType[];
1534
1542
  export interface PlanningStatistics {
1535
1543
  /**