Skip to content

Commit

Permalink
Merge branch 'release-1.34.99'
Browse files Browse the repository at this point in the history
* release-1.34.99:
  Bumping version to 1.34.99
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed May 6, 2024
2 parents 50e5494 + ce24680 commit 6eec349
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changes/1.34.99.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"category": "``medialive``",
"description": "AWS Elemental MediaLive now supports configuring how SCTE 35 passthrough triggers segment breaks in HLS and MediaPackage output groups. Previously, messages triggered breaks in all these output groups. The new option is to trigger segment breaks only in groups that have SCTE 35 passthrough enabled.",
"type": "api-change"
}
]
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
=========

1.34.99
=======

* api-change:``medialive``: AWS Elemental MediaLive now supports configuring how SCTE 35 passthrough triggers segment breaks in HLS and MediaPackage output groups. Previously, messages triggered breaks in all these output groups. The new option is to trigger segment breaks only in groups that have SCTE 35 passthrough enabled.


1.34.98
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.98'
__version__ = '1.34.99'


class NullHandler(logging.Handler):
Expand Down
40 changes: 39 additions & 1 deletion botocore/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -4434,6 +4434,19 @@
"deprecated" : true,
"hostname" : "controltower-fips.ca-central-1.amazonaws.com"
},
"ca-west-1" : {
"variants" : [ {
"hostname" : "controltower-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
} ]
},
"ca-west-1-fips" : {
"credentialScope" : {
"region" : "ca-west-1"
},
"deprecated" : true,
"hostname" : "controltower-fips.ca-west-1.amazonaws.com"
},
"eu-central-1" : { },
"eu-central-2" : { },
"eu-north-1" : { },
Expand Down Expand Up @@ -7858,6 +7871,12 @@
"tags" : [ "fips" ]
} ]
},
"ca-west-1" : {
"variants" : [ {
"hostname" : "fms-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
} ]
},
"eu-central-1" : {
"variants" : [ {
"hostname" : "fms-fips.eu-central-1.amazonaws.com",
Expand Down Expand Up @@ -7947,6 +7966,13 @@
"deprecated" : true,
"hostname" : "fms-fips.ca-central-1.amazonaws.com"
},
"fips-ca-west-1" : {
"credentialScope" : {
"region" : "ca-west-1"
},
"deprecated" : true,
"hostname" : "fms-fips.ca-west-1.amazonaws.com"
},
"fips-eu-central-1" : {
"credentialScope" : {
"region" : "eu-central-1"
Expand Down Expand Up @@ -19150,7 +19176,12 @@
"tags" : [ "fips" ]
} ]
},
"ca-west-1" : { },
"ca-west-1" : {
"variants" : [ {
"hostname" : "transfer-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
} ]
},
"eu-central-1" : { },
"eu-central-2" : { },
"eu-north-1" : { },
Expand All @@ -19166,6 +19197,13 @@
"deprecated" : true,
"hostname" : "transfer-fips.ca-central-1.amazonaws.com"
},
"fips-ca-west-1" : {
"credentialScope" : {
"region" : "ca-west-1"
},
"deprecated" : true,
"hostname" : "transfer-fips.ca-west-1.amazonaws.com"
},
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
Expand Down
13 changes: 13 additions & 0 deletions botocore/data/medialive/2017-10-14/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5012,6 +5012,11 @@
"shape": "AvailSettings",
"locationName": "availSettings",
"documentation": "Controls how SCTE-35 messages create cues. Splice Insert mode treats all segmentation signals traditionally. With Time Signal APOS mode only Time Signal Placement Opportunity and Break messages create segment breaks. With ESAM mode, signals are forwarded to an ESAM server for possible update."
},
"Scte35SegmentationScope": {
"shape": "Scte35SegmentationScope",
"locationName": "scte35SegmentationScope",
"documentation": "Configures whether SCTE 35 passthrough triggers segment breaks in all output groups that use segmented outputs. Insertion of a SCTE 35 message typically results in a segment break, in addition to the regular cadence of breaks. The segment breaks appear in video outputs, audio outputs, and captions outputs (if any).\n\nALL_OUTPUT_GROUPS: Default. Insert the segment break in in all output groups that have segmented outputs. This is the legacy behavior.\nSCTE35_ENABLED_OUTPUT_GROUPS: Insert the segment break only in output groups that have SCTE 35 passthrough enabled. This is the recommended value, because it reduces unnecessary segment breaks."
}
},
"documentation": "Avail Configuration"
Expand Down Expand Up @@ -23687,6 +23692,14 @@
"type": "string",
"pattern": "^[^\\s]+$",
"documentation": "Placeholder documentation for __stringPatternS"
},
"Scte35SegmentationScope": {
"type": "string",
"documentation": "Scte35 Segmentation Scope",
"enum": [
"ALL_OUTPUT_GROUPS",
"SCTE35_ENABLED_OUTPUT_GROUPS"
]
}
},
"documentation": "API for AWS Elemental MediaLive"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# The short X.Y version.
version = '1.34.'
# The full version, including alpha/beta/rc tags.
release = '1.34.98'
release = '1.34.99'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 6eec349

Please sign in to comment.