Skip to content

Commit

Permalink
Updates SDK to v2.1577.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 13, 2024
1 parent c70b7d9 commit 8a89264
Show file tree
Hide file tree
Showing 16 changed files with 628 additions and 364 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1577.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "IVSRealTime",
"description": "adds support for multiple new composition layout configuration options (grid, pip)"
},
{
"type": "feature",
"category": "KinesisAnalyticsV2",
"description": "Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs."
},
{
"type": "feature",
"category": "S3",
"description": "This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT)."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1576.0-->
<!--LATEST=2.1577.0-->
<!--ENTRYINSERT-->

## 2.1577.0
* feature: IVSRealTime: adds support for multiple new composition layout configuration options (grid, pip)
* feature: KinesisAnalyticsV2: Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.
* feature: S3: This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).

## 2.1576.0
* feature: Connect: This release increases MaxResults limit to 500 in request for SearchUsers, SearchQueues and SearchRoutingProfiles APIs of Amazon Connect.
* feature: Kafka: Added support for specifying the starting position of topic replication in MSK-Replicator.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1576.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1577.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
35 changes: 34 additions & 1 deletion apis/ivs-realtime-2020-07-14.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,40 @@
"grid": {
"type": "structure",
"members": {
"featuredParticipantAttribute": {}
"featuredParticipantAttribute": {},
"gridGap": {
"type": "integer"
},
"omitStoppedVideo": {
"type": "boolean"
},
"videoAspectRatio": {},
"videoFillMode": {}
}
},
"pip": {
"type": "structure",
"members": {
"featuredParticipantAttribute": {},
"gridGap": {
"type": "integer"
},
"omitStoppedVideo": {
"type": "boolean"
},
"pipBehavior": {},
"pipHeight": {
"type": "integer"
},
"pipOffset": {
"type": "integer"
},
"pipParticipantAttribute": {},
"pipPosition": {},
"pipWidth": {
"type": "integer"
},
"videoFillMode": {}
}
}
}
Expand Down
120 changes: 120 additions & 0 deletions apis/ivs-realtime-2020-07-14.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1598,10 +1598,30 @@
"featuredParticipantAttribute": {
"shape": "AttributeKey",
"documentation": "<p>This attribute name identifies the featured slot. A participant with this attribute set to <code>\"true\"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the featured slot.</p>"
},
"gridGap": {
"shape": "GridGap",
"documentation": "<p>Specifies the spacing between participant tiles in pixels. Default: <code>2</code>.</p>"
},
"omitStoppedVideo": {
"shape": "OmitStoppedVideo",
"documentation": "<p>Determines whether to omit participants with stopped video in the composition. Default: <code>false</code>.</p>"
},
"videoAspectRatio": {
"shape": "VideoAspectRatio",
"documentation": "<p>Sets the non-featured participant display mode. Default: <code>VIDEO</code>.</p>"
},
"videoFillMode": {
"shape": "VideoFillMode",
"documentation": "<p>Defines how video fits within the participant tile. When not set, <code>videoFillMode</code> defaults to <code>COVER</code> fill mode for participants in the grid and to <code>CONTAIN</code> fill mode for featured participants.</p>"
}
},
"documentation": "<p>Configuration information specific to Grid layout, for server-side composition. See \"Layouts\" in <a href=\"https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/server-side-composition.html\">Server-Side Composition</a>.</p>"
},
"GridGap": {
"type": "integer",
"min": 0
},
"Height": {
"type": "integer",
"box": true,
Expand All @@ -1614,6 +1634,10 @@
"grid": {
"shape": "GridConfiguration",
"documentation": "<p>Configuration related to grid layout. Default: Grid layout.</p>"
},
"pip": {
"shape": "PipConfiguration",
"documentation": "<p>Configuration related to PiP layout.</p>"
}
},
"documentation": "<p>Configuration information of supported layouts for server-side composition.</p>"
Expand Down Expand Up @@ -1945,6 +1969,9 @@
"max": 100,
"min": 1
},
"OmitStoppedVideo": {
"type": "boolean"
},
"PaginationToken": {
"type": "string",
"max": 1024,
Expand Down Expand Up @@ -2181,6 +2208,82 @@
"max": 128,
"min": 0
},
"PipBehavior": {
"type": "string",
"enum": [
"STATIC",
"DYNAMIC"
]
},
"PipConfiguration": {
"type": "structure",
"members": {
"featuredParticipantAttribute": {
"shape": "AttributeKey",
"documentation": "<p>This attribute name identifies the featured slot. A participant with this attribute set to <code>\"true\"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the featured slot.</p>"
},
"gridGap": {
"shape": "GridGap",
"documentation": "<p>Specifies the spacing between participant tiles in pixels. Default: <code>0</code>.</p>"
},
"omitStoppedVideo": {
"shape": "OmitStoppedVideo",
"documentation": "<p>Determines whether to omit participants with stopped video in the composition. Default: <code>false</code>.</p>"
},
"pipBehavior": {
"shape": "PipBehavior",
"documentation": "<p>Defines PiP behavior when all participants have left. Default: <code>STATIC</code>.</p>"
},
"pipHeight": {
"shape": "PipHeight",
"documentation": "<p>Specifies the height of the PiP window in pixels. When this is not set explicitly, <code>pipHeight</code>’s value will be based on the size of the composition and the aspect ratio of the participant’s video.</p>"
},
"pipOffset": {
"shape": "PipOffset",
"documentation": "<p>Sets the PiP window’s offset position in pixels from the closest edges determined by <code>PipPosition</code>. Default: <code>0</code>.</p>"
},
"pipParticipantAttribute": {
"shape": "AttributeKey",
"documentation": "<p>Identifies the PiP slot. A participant with this attribute set to <code>\"true\"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the PiP slot.</p>"
},
"pipPosition": {
"shape": "PipPosition",
"documentation": "<p>Determines the corner position of the PiP window. Default: <code>BOTTOM_RIGHT</code>.</p>"
},
"pipWidth": {
"shape": "PipWidth",
"documentation": "<p>Specifies the width of the PiP window in pixels. When this is not set explicitly, <code>pipWidth</code>’s value will be based on the size of the composition and the aspect ratio of the participant’s video.</p>"
},
"videoFillMode": {
"shape": "VideoFillMode",
"documentation": "<p>Defines how video fits within the participant tile. Default: <code>COVER</code>. </p>"
}
},
"documentation": "<p>Configuration information specific to Picture-in-Picture (PiP) layout, for <a href=\"https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/server-side-composition.html\">server-side composition</a>. </p>"
},
"PipHeight": {
"type": "integer",
"box": true,
"min": 1
},
"PipOffset": {
"type": "integer",
"min": 0
},
"PipPosition": {
"type": "string",
"enum": [
"TOP_LEFT",
"TOP_RIGHT",
"BOTTOM_LEFT",
"BOTTOM_RIGHT"
]
},
"PipWidth": {
"type": "integer",
"box": true,
"min": 1
},
"Published": {
"type": "boolean"
},
Expand Down Expand Up @@ -2635,6 +2738,23 @@
},
"documentation": "<p>Settings for video.</p>"
},
"VideoAspectRatio": {
"type": "string",
"enum": [
"AUTO",
"VIDEO",
"SQUARE",
"PORTRAIT"
]
},
"VideoFillMode": {
"type": "string",
"enum": [
"FILL",
"COVER",
"CONTAIN"
]
},
"Width": {
"type": "integer",
"box": true,
Expand Down
6 changes: 4 additions & 2 deletions apis/kinesisanalyticsv2-2018-05-23.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,8 @@
}
}
},
"ConditionalToken": {}
"ConditionalToken": {},
"RuntimeEnvironmentUpdate": {}
}
},
"output": {
Expand Down Expand Up @@ -2150,7 +2151,8 @@
},
"SnapshotCreationTimestamp": {
"type": "timestamp"
}
},
"RuntimeEnvironment": {}
}
}
}
Expand Down
Loading

0 comments on commit 8a89264

Please sign in to comment.