cdk-lambda-subminute 2.0.402 → 2.0.404

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.
@@ -663,13 +663,34 @@ declare namespace IVSRealTime {
663
663
  * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot.
664
664
  */
665
665
  featuredParticipantAttribute?: AttributeKey;
666
+ /**
667
+ * Specifies the spacing between participant tiles in pixels. Default: 2.
668
+ */
669
+ gridGap?: GridGap;
670
+ /**
671
+ * Determines whether to omit participants with stopped video in the composition. Default: false.
672
+ */
673
+ omitStoppedVideo?: OmitStoppedVideo;
674
+ /**
675
+ * Sets the non-featured participant display mode. Default: VIDEO.
676
+ */
677
+ videoAspectRatio?: VideoAspectRatio;
678
+ /**
679
+ * Defines how video fits within the participant tile. When not set, videoFillMode defaults to COVER fill mode for participants in the grid and to CONTAIN fill mode for featured participants.
680
+ */
681
+ videoFillMode?: VideoFillMode;
666
682
  }
683
+ export type GridGap = number;
667
684
  export type Height = number;
668
685
  export interface LayoutConfiguration {
669
686
  /**
670
687
  * Configuration related to grid layout. Default: Grid layout.
671
688
  */
672
689
  grid?: GridConfiguration;
690
+ /**
691
+ * Configuration related to PiP layout.
692
+ */
693
+ pip?: PipConfiguration;
673
694
  }
674
695
  export interface ListCompositionsRequest {
675
696
  /**
@@ -874,6 +895,7 @@ declare namespace IVSRealTime {
874
895
  export type MaxStageResults = number;
875
896
  export type MaxStageSessionResults = number;
876
897
  export type MaxStorageConfigurationResults = number;
898
+ export type OmitStoppedVideo = boolean;
877
899
  export type PaginationToken = string;
878
900
  export interface Participant {
879
901
  /**
@@ -1010,6 +1032,53 @@ declare namespace IVSRealTime {
1010
1032
  export type ParticipantTokenList = ParticipantToken[];
1011
1033
  export type ParticipantTokenString = string;
1012
1034
  export type ParticipantTokenUserId = string;
1035
+ export type PipBehavior = "STATIC"|"DYNAMIC"|string;
1036
+ export interface PipConfiguration {
1037
+ /**
1038
+ * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot.
1039
+ */
1040
+ featuredParticipantAttribute?: AttributeKey;
1041
+ /**
1042
+ * Specifies the spacing between participant tiles in pixels. Default: 0.
1043
+ */
1044
+ gridGap?: GridGap;
1045
+ /**
1046
+ * Determines whether to omit participants with stopped video in the composition. Default: false.
1047
+ */
1048
+ omitStoppedVideo?: OmitStoppedVideo;
1049
+ /**
1050
+ * Defines PiP behavior when all participants have left. Default: STATIC.
1051
+ */
1052
+ pipBehavior?: PipBehavior;
1053
+ /**
1054
+ * Specifies the height of the PiP window in pixels. When this is not set explicitly, pipHeight’s value will be based on the size of the composition and the aspect ratio of the participant’s video.
1055
+ */
1056
+ pipHeight?: PipHeight;
1057
+ /**
1058
+ * Sets the PiP window’s offset position in pixels from the closest edges determined by PipPosition. Default: 0.
1059
+ */
1060
+ pipOffset?: PipOffset;
1061
+ /**
1062
+ * Identifies the PiP slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the PiP slot.
1063
+ */
1064
+ pipParticipantAttribute?: AttributeKey;
1065
+ /**
1066
+ * Determines the corner position of the PiP window. Default: BOTTOM_RIGHT.
1067
+ */
1068
+ pipPosition?: PipPosition;
1069
+ /**
1070
+ * Specifies the width of the PiP window in pixels. When this is not set explicitly, pipWidth’s value will be based on the size of the composition and the aspect ratio of the participant’s video.
1071
+ */
1072
+ pipWidth?: PipWidth;
1073
+ /**
1074
+ * Defines how video fits within the participant tile. Default: COVER.
1075
+ */
1076
+ videoFillMode?: VideoFillMode;
1077
+ }
1078
+ export type PipHeight = number;
1079
+ export type PipOffset = number;
1080
+ export type PipPosition = "TOP_LEFT"|"TOP_RIGHT"|"BOTTOM_LEFT"|"BOTTOM_RIGHT"|string;
1081
+ export type PipWidth = number;
1013
1082
  export type Published = boolean;
1014
1083
  export interface RecordingConfiguration {
1015
1084
  /**
@@ -1255,6 +1324,8 @@ declare namespace IVSRealTime {
1255
1324
  */
1256
1325
  width?: Width;
1257
1326
  }
1327
+ export type VideoAspectRatio = "AUTO"|"VIDEO"|"SQUARE"|"PORTRAIT"|string;
1328
+ export type VideoFillMode = "FILL"|"COVER"|"CONTAIN"|string;
1258
1329
  export type Width = number;
1259
1330
  /**
1260
1331
  * 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.
@@ -3394,6 +3394,13 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3394
3394
  */
3395
3395
  TargetKafkaClusterAlias?: __string;
3396
3396
  }
3397
+ export interface ReplicationStartingPosition {
3398
+ /**
3399
+ * The type of replication starting position.
3400
+ */
3401
+ Type?: ReplicationStartingPositionType;
3402
+ }
3403
+ export type ReplicationStartingPositionType = "LATEST"|"EARLIEST"|string;
3397
3404
  export interface ReplicationStateInfo {
3398
3405
  /**
3399
3406
  * Code that describes the current state of the replicator.
@@ -3506,6 +3513,10 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3506
3513
  * Whether to periodically check for new topics and partitions.
3507
3514
  */
3508
3515
  DetectAndCopyNewTopics?: __boolean;
3516
+ /**
3517
+ * Configuration for specifying the position in the topics to start replicating from.
3518
+ */
3519
+ StartingPosition?: ReplicationStartingPosition;
3509
3520
  /**
3510
3521
  * List of regular expression patterns indicating the topics that should not be replicated.
3511
3522
  */