Skip to content

Commit 4d80c4d

Browse files
Merging v1.4.54 release
2 parents 310661b + dbe530a commit 4d80c4d

File tree

9 files changed

+407
-7
lines changed

9 files changed

+407
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [1.4.54] - 04/02/2025
4+
5+
### Features
6+
* (**applicationsignals**) Application Signals now supports creating Service Level Objectives on service dependencies. Users can now create or update SLOs on discovered service dependencies to monitor their standard application metrics.
7+
* (**codebuild**) This release adds support for environment type WINDOWS_SERVER_2022_CONTAINER in ProjectEnvironment
8+
* (**lexmodelsv2**) Release feature of errorlogging for lex bot, customer can config this feature in bot version to generate log for error exception which helps debug
9+
* (**medialive**) Added support for SMPTE 2110 inputs when running a channel in a MediaLive Anywhere cluster. This feature enables ingestion of SMPTE 2110-compliant video, audio, and ancillary streams by reading SDP files that AWS Elemental MediaLive can retrieve from a network source.
10+
11+
### Documentation
12+
* (**ecr**) Fix for customer issues related to AWS account ID and size limitation for token.
13+
* (**ecs**) This is an Amazon ECS documentation only update to address various tickets.
14+
315
## [1.4.53] - 04/01/2025
416

517
### Features

codegen/aws-sdk-codegen/src/main/resources/aws/sdk/kotlin/codegen/endpoints.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5970,7 +5970,12 @@
59705970
"endpoints" : {
59715971
"ap-northeast-1" : { },
59725972
"ap-northeast-2" : { },
5973-
"ap-south-1" : { },
5973+
"ap-south-1" : {
5974+
"variants" : [ {
5975+
"hostname" : "comprehend.ap-south-1.api.aws",
5976+
"tags" : [ "dualstack" ]
5977+
} ]
5978+
},
59745979
"ap-southeast-1" : { },
59755980
"ap-southeast-2" : { },
59765981
"ca-central-1" : {
@@ -6020,6 +6025,12 @@
60206025
"variants" : [ {
60216026
"hostname" : "comprehend-fips.us-east-2.amazonaws.com",
60226027
"tags" : [ "fips" ]
6028+
}, {
6029+
"hostname" : "comprehend-fips.us-east-2.api.aws",
6030+
"tags" : [ "dualstack", "fips" ]
6031+
}, {
6032+
"hostname" : "comprehend.us-east-2.api.aws",
6033+
"tags" : [ "dualstack" ]
60236034
} ]
60246035
},
60256036
"us-west-2" : {
@@ -12193,6 +12204,7 @@
1219312204
"ap-southeast-3" : { },
1219412205
"ap-southeast-4" : { },
1219512206
"ap-southeast-5" : { },
12207+
"ap-southeast-7" : { },
1219612208
"ca-central-1" : { },
1219712209
"ca-west-1" : {
1219812210
"variants" : [ {
@@ -37248,6 +37260,11 @@
3724837260
}
3724937261
}
3725037262
},
37263+
"codebuild" : {
37264+
"endpoints" : {
37265+
"us-isob-east-1" : { }
37266+
}
37267+
},
3725137268
"codedeploy" : {
3725237269
"endpoints" : {
3725337270
"us-isob-east-1" : { }

codegen/sdk/aws-models/application-signals.json

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -917,6 +917,28 @@
917917
"smithy.api#output": {}
918918
}
919919
},
920+
"com.amazonaws.applicationsignals#DependencyConfig": {
921+
"type": "structure",
922+
"members": {
923+
"DependencyKeyAttributes": {
924+
"target": "com.amazonaws.applicationsignals#Attributes",
925+
"traits": {
926+
"smithy.api#documentation": "<p>This is a string-to-string map. It can \n include the following fields.</p>\n <ul>\n <li>\n <p>\n <code>Type</code> designates the type of object this is.</p>\n </li>\n <li>\n <p>\n <code>ResourceType</code> specifies the type of the resource. This field is used only\n when the value of the <code>Type</code> field is <code>Resource</code> or <code>AWS::Resource</code>.</p>\n </li>\n <li>\n <p>\n <code>Name</code> specifies the name of the object. This is used only if the value of the <code>Type</code> field\n is <code>Service</code>, <code>RemoteService</code>, or <code>AWS::Service</code>.</p>\n </li>\n <li>\n <p>\n <code>Identifier</code> identifies the resource objects of this resource. \n This is used only if the value of the <code>Type</code> field\n is <code>Resource</code> or <code>AWS::Resource</code>.</p>\n </li>\n <li>\n <p>\n <code>Environment</code> specifies the location where this object is hosted, or what it belongs to.</p>\n </li>\n </ul>",
927+
"smithy.api#required": {}
928+
}
929+
},
930+
"DependencyOperationName": {
931+
"target": "com.amazonaws.applicationsignals#OperationName",
932+
"traits": {
933+
"smithy.api#documentation": "<p>The name of the called operation in the dependency.</p>",
934+
"smithy.api#required": {}
935+
}
936+
}
937+
},
938+
"traits": {
939+
"smithy.api#documentation": "<p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>.</p>\n <p>When creating a service dependency SLO, you must specify the <code>KeyAttributes</code> of the service, and the <code>DependencyConfig</code> for the dependency. You can specify the <code>OperationName</code> of the service, from which it calls the dependency. Alternatively, \n you can exclude <code>OperationName</code> and the SLO will monitor all of the service's operations that call the dependency.</p>"
940+
}
941+
},
920942
"com.amazonaws.applicationsignals#Dimension": {
921943
"type": "structure",
922944
"members": {
@@ -1700,6 +1722,12 @@
17001722
"smithy.api#httpQuery": "OperationName"
17011723
}
17021724
},
1725+
"DependencyConfig": {
1726+
"target": "com.amazonaws.applicationsignals#DependencyConfig",
1727+
"traits": {
1728+
"smithy.api#documentation": "<p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>. </p>"
1729+
}
1730+
},
17031731
"MaxResults": {
17041732
"target": "com.amazonaws.applicationsignals#ListServiceLevelObjectivesMaxResults",
17051733
"traits": {
@@ -1715,6 +1743,12 @@
17151743
"smithy.api#httpQuery": "NextToken"
17161744
}
17171745
},
1746+
"MetricSourceTypes": {
1747+
"target": "com.amazonaws.applicationsignals#MetricSourceTypes",
1748+
"traits": {
1749+
"smithy.api#documentation": "<p>Use this optional field to only include SLOs with the specified metric source types in the output. Supported types are:</p>\n <ul>\n <li>\n <p>Service operation</p>\n </li>\n <li>\n <p>Service dependency</p>\n </li>\n <li>\n <p>CloudWatch metric</p>\n </li>\n </ul>"
1750+
}
1751+
},
17181752
"IncludeLinkedAccounts": {
17191753
"target": "smithy.api#Boolean",
17201754
"traits": {
@@ -2240,6 +2274,41 @@
22402274
"target": "com.amazonaws.applicationsignals#MetricReference"
22412275
}
22422276
},
2277+
"com.amazonaws.applicationsignals#MetricSourceType": {
2278+
"type": "enum",
2279+
"members": {
2280+
"SERVICE_OPERATION": {
2281+
"target": "smithy.api#Unit",
2282+
"traits": {
2283+
"smithy.api#enumValue": "ServiceOperation"
2284+
}
2285+
},
2286+
"CLOUDWATCH_METRIC": {
2287+
"target": "smithy.api#Unit",
2288+
"traits": {
2289+
"smithy.api#enumValue": "CloudWatchMetric"
2290+
}
2291+
},
2292+
"SERVICE_DEPENDENCY": {
2293+
"target": "smithy.api#Unit",
2294+
"traits": {
2295+
"smithy.api#enumValue": "ServiceDependency"
2296+
}
2297+
}
2298+
}
2299+
},
2300+
"com.amazonaws.applicationsignals#MetricSourceTypes": {
2301+
"type": "list",
2302+
"member": {
2303+
"target": "com.amazonaws.applicationsignals#MetricSourceType"
2304+
},
2305+
"traits": {
2306+
"smithy.api#length": {
2307+
"min": 1,
2308+
"max": 3
2309+
}
2310+
}
2311+
},
22432312
"com.amazonaws.applicationsignals#MetricStat": {
22442313
"type": "structure",
22452314
"members": {
@@ -2434,6 +2503,12 @@
24342503
"smithy.api#documentation": "<p>This structure defines the metric that is used as the \"good request\" or \"bad request\"\n value for a request-based SLO. \n This value observed for the metric defined in \n <code>TotalRequestCountMetric</code> is divided by the number found for \n <code>MonitoredRequestCountMetric</code> to determine the percentage of successful requests that \n this SLO tracks.</p>",
24352504
"smithy.api#required": {}
24362505
}
2506+
},
2507+
"DependencyConfig": {
2508+
"target": "com.amazonaws.applicationsignals#DependencyConfig",
2509+
"traits": {
2510+
"smithy.api#documentation": "<p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>. </p>"
2511+
}
24372512
}
24382513
},
24392514
"traits": {
@@ -2472,6 +2547,12 @@
24722547
"traits": {
24732548
"smithy.api#documentation": "<p>Use this structure to define the metric that you want to use as the \"good request\" or \"bad request\"\n value for a request-based SLO. \n This value observed for the metric defined in \n <code>TotalRequestCountMetric</code> will be divided by the number found for \n <code>MonitoredRequestCountMetric</code> to determine the percentage of successful requests that \n this SLO tracks.</p>"
24742549
}
2550+
},
2551+
"DependencyConfig": {
2552+
"target": "com.amazonaws.applicationsignals#DependencyConfig",
2553+
"traits": {
2554+
"smithy.api#documentation": "<p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>. </p>"
2555+
}
24752556
}
24762557
},
24772558
"traits": {
@@ -2801,6 +2882,12 @@
28012882
"smithy.api#documentation": "<p>If this SLO monitors a CloudWatch metric or the result of a CloudWatch metric math expression, \n this structure includes the information about that metric or expression. </p>",
28022883
"smithy.api#required": {}
28032884
}
2885+
},
2886+
"DependencyConfig": {
2887+
"target": "com.amazonaws.applicationsignals#DependencyConfig",
2888+
"traits": {
2889+
"smithy.api#documentation": "<p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>. </p>"
2890+
}
28042891
}
28052892
},
28062893
"traits": {
@@ -2845,6 +2932,12 @@
28452932
"traits": {
28462933
"smithy.api#documentation": "<p>If this SLO monitors a CloudWatch metric or the result of a CloudWatch metric math expression, \n use this structure to specify that metric or expression. </p>"
28472934
}
2935+
},
2936+
"DependencyConfig": {
2937+
"target": "com.amazonaws.applicationsignals#DependencyConfig",
2938+
"traits": {
2939+
"smithy.api#documentation": "<p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>. </p>"
2940+
}
28482941
}
28492942
},
28502943
"traits": {
@@ -2947,6 +3040,12 @@
29473040
"traits": {
29483041
"smithy.api#documentation": "<p>Each object in this array defines the length of the look-back window used to calculate one burn rate metric\n for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO.</p>"
29493042
}
3043+
},
3044+
"MetricSourceType": {
3045+
"target": "com.amazonaws.applicationsignals#MetricSourceType",
3046+
"traits": {
3047+
"smithy.api#documentation": "<p>Displays the SLI metric source type for this SLO. Supported types are:</p>\n <ul>\n <li>\n <p>Service operation</p>\n </li>\n <li>\n <p>Service dependency</p>\n </li>\n <li>\n <p>CloudWatch metric</p>\n </li>\n </ul>"
3048+
}
29503049
}
29513050
},
29523051
"traits": {
@@ -3230,11 +3329,29 @@
32303329
"smithy.api#documentation": "<p>If this service level objective is specific to a single operation, this \n field displays the name of that operation.</p>"
32313330
}
32323331
},
3332+
"DependencyConfig": {
3333+
"target": "com.amazonaws.applicationsignals#DependencyConfig",
3334+
"traits": {
3335+
"smithy.api#documentation": "<p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>. </p>"
3336+
}
3337+
},
32333338
"CreatedTime": {
32343339
"target": "smithy.api#Timestamp",
32353340
"traits": {
32363341
"smithy.api#documentation": "<p>The date and time that this service level objective was created. It is expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.</p>"
32373342
}
3343+
},
3344+
"EvaluationType": {
3345+
"target": "com.amazonaws.applicationsignals#EvaluationType",
3346+
"traits": {
3347+
"smithy.api#documentation": "<p>Displays whether this is a period-based SLO or a request-based SLO.</p>"
3348+
}
3349+
},
3350+
"MetricSourceType": {
3351+
"target": "com.amazonaws.applicationsignals#MetricSourceType",
3352+
"traits": {
3353+
"smithy.api#documentation": "<p>Displays the SLI metric source type for this SLO. Supported types are:</p>\n <ul>\n <li>\n <p>Service operation</p>\n </li>\n <li>\n <p>Service dependency</p>\n </li>\n <li>\n <p>CloudWatch metric</p>\n </li>\n </ul>"
3354+
}
32383355
}
32393356
},
32403357
"traits": {

codegen/sdk/aws-models/codebuild.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4053,6 +4053,12 @@
40534053
"smithy.api#enumValue": "WINDOWS_SERVER_2019_CONTAINER"
40544054
}
40554055
},
4056+
"WINDOWS_SERVER_2022_CONTAINER": {
4057+
"target": "smithy.api#Unit",
4058+
"traits": {
4059+
"smithy.api#enumValue": "WINDOWS_SERVER_2022_CONTAINER"
4060+
}
4061+
},
40564062
"LINUX_LAMBDA_CONTAINER": {
40574063
"target": "smithy.api#Unit",
40584064
"traits": {

0 commit comments

Comments
 (0)