Skip to content

Commit

Permalink
Release v1.52.3 (2024-05-06) (#5253)
Browse files Browse the repository at this point in the history
Release v1.52.3 (2024-05-06)
===

### Service Client Updates
* `service/medialive`: Updates service API and documentation
  * 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.
  • Loading branch information
aws-sdk-go-automation committed May 6, 2024
1 parent 417f8a9 commit 75bdfcd
Show file tree
Hide file tree
Showing 7 changed files with 149 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.52.3 (2024-05-06)
===

### Service Client Updates
* `service/medialive`: Updates service API and documentation
* 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.

Release v1.52.2 (2024-05-03)
===

Expand Down
51 changes: 51 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.52.2"
const SDKVersion = "1.52.3"
11 changes: 11 additions & 0 deletions models/apis/medialive/2017-10-14/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4083,6 +4083,10 @@
"AvailSettings": {
"shape": "AvailSettings",
"locationName": "availSettings"
},
"Scte35SegmentationScope": {
"shape": "Scte35SegmentationScope",
"locationName": "scte35SegmentationScope"
}
}
},
Expand Down Expand Up @@ -19979,6 +19983,13 @@
"__stringPatternS": {
"type": "string",
"pattern": "^[^\\s]+$"
},
"Scte35SegmentationScope": {
"type": "string",
"enum": [
"ALL_OUTPUT_GROUPS",
"SCTE35_ENABLED_OUTPUT_GROUPS"
]
}
}
}
6 changes: 6 additions & 0 deletions models/apis/medialive/2017-10-14/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5964,6 +5964,12 @@
"UpdateEventBridgeRuleTemplateRequestContent$GroupIdentifier": "An eventbridge rule template group's identifier. Can be either be its id or current name.",
"__listOf__stringPatternS$member": null
}
},
"Scte35SegmentationScope": {
"base": "Scte35 Segmentation Scope",
"refs": {
"AvailConfiguration$Scte35SegmentationScope": "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": "API for AWS Elemental MediaLive"
Expand Down
40 changes: 39 additions & 1 deletion models/endpoints/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
34 changes: 34 additions & 0 deletions service/medialive/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 75bdfcd

Please sign in to comment.