You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release v1.44.117 (2022-10-17)
===
### Service Client Updates
* `service/greengrass`: Updates service API and documentation
* This change allows customers to specify FunctionRuntimeOverride in FunctionDefinitionVersion. This configuration can be used if the runtime on the device is different from the AWS Lambda runtime specified for that function.
* `service/sagemaker`: Updates service API and documentation
* This release adds support for C7g, C6g, C6gd, C6gn, M6g, M6gd, R6g, and R6gn Graviton instance types in Amazon SageMaker Inference.
Copy file name to clipboardexpand all lines: CHANGELOG.md
+9
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,12 @@
1
+
Release v1.44.117 (2022-10-17)
2
+
===
3
+
4
+
### Service Client Updates
5
+
* `service/greengrass`: Updates service API and documentation
6
+
* This change allows customers to specify FunctionRuntimeOverride in FunctionDefinitionVersion. This configuration can be used if the runtime on the device is different from the AWS Lambda runtime specified for that function.
7
+
* `service/sagemaker`: Updates service API and documentation
8
+
* This release adds support for C7g, C6g, C6gd, C6gn, M6g, M6gd, R6g, and R6gn Graviton instance types in Amazon SageMaker Inference.
Copy file name to clipboardexpand all lines: models/apis/greengrass/2017-06-07/docs-2.json
+1
Original file line number
Diff line number
Diff line change
@@ -847,6 +847,7 @@
847
847
"Function$Id" : "A descriptive or arbitrary ID for the function. This value must be unique within the function definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.",
848
848
"FunctionConfiguration$ExecArgs" : "The execution arguments.",
849
849
"FunctionConfiguration$Executable" : "The name of the function executable.",
850
+
"FunctionConfiguration$FunctionRuntimeOverride" : "The Lambda runtime supported by Greengrass which is to be used instead of the one specified in the Lambda function.",
850
851
"GeneralError$Message" : "A message containing information about the error.",
851
852
"GetAssociatedRoleResponse$AssociatedAt" : "The time when the role was associated with the group.",
852
853
"GetAssociatedRoleResponse$RoleArn" : "The ARN of the role that is associated with the group.",
"documentation": "The AWS region used to dispatch the request.",
8
+
"type": "String"
9
+
},
10
+
"UseDualStack": {
11
+
"builtIn": "AWS::UseDualStack",
12
+
"required": true,
13
+
"default": false,
14
+
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
15
+
"type": "Boolean"
16
+
},
17
+
"UseFIPS": {
18
+
"builtIn": "AWS::UseFIPS",
19
+
"required": true,
20
+
"default": false,
21
+
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
22
+
"type": "Boolean"
23
+
},
24
+
"Endpoint": {
25
+
"builtIn": "SDK::Endpoint",
26
+
"required": false,
27
+
"documentation": "Override the endpoint used to send this request",
28
+
"type": "String"
29
+
}
30
+
},
31
+
"rules": [
32
+
{
33
+
"conditions": [
34
+
{
35
+
"fn": "aws.partition",
36
+
"argv": [
37
+
{
38
+
"ref": "Region"
39
+
}
40
+
],
41
+
"assign": "PartitionResult"
42
+
}
43
+
],
44
+
"type": "tree",
45
+
"rules": [
46
+
{
47
+
"conditions": [
48
+
{
49
+
"fn": "isSet",
50
+
"argv": [
51
+
{
52
+
"ref": "Endpoint"
53
+
}
54
+
]
55
+
},
56
+
{
57
+
"fn": "parseURL",
58
+
"argv": [
59
+
{
60
+
"ref": "Endpoint"
61
+
}
62
+
],
63
+
"assign": "url"
64
+
}
65
+
],
66
+
"type": "tree",
67
+
"rules": [
68
+
{
69
+
"conditions": [
70
+
{
71
+
"fn": "booleanEquals",
72
+
"argv": [
73
+
{
74
+
"ref": "UseFIPS"
75
+
},
76
+
true
77
+
]
78
+
}
79
+
],
80
+
"error": "Invalid Configuration: FIPS and custom endpoint are not supported",
81
+
"type": "error"
82
+
},
83
+
{
84
+
"conditions": [],
85
+
"type": "tree",
86
+
"rules": [
87
+
{
88
+
"conditions": [
89
+
{
90
+
"fn": "booleanEquals",
91
+
"argv": [
92
+
{
93
+
"ref": "UseDualStack"
94
+
},
95
+
true
96
+
]
97
+
}
98
+
],
99
+
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
0 commit comments