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
In your working directory, use the `create` command to start creating a new custom rule. You must specify the runtime for the Lambda function that will back the Rule, and you can also specify a resource type (or comma-separated list of types) that the Rule will evaluate or a maximum frequency for a periodic rule. This will add a new directory for the rule and populate it with several files, including a skeleton of your Lambda code.
94
94
95
-
> :warning: By default, if you do not specify a runtime, `rdk` will select the latest `rdklib` Python runtime (eg. `python3.12-lib`). If you use an `rdklib` runtime, you will need to have `rdklib` Lambda layer installed in your AWS account (see `--generate-lambda-layer` in `rdk init` above), and will need `rdklib` installed locally if you plan to run unit tests locally. Alternatively, you can explicitly specify a non-`rdklib` runtime like `python3.12`.
95
+
> :warning: By default, if you do not specify a runtime, `rdk` will select the latest `rdklib` Python runtime (eg. `python3.13-lib`). If you use an `rdklib` runtime, you will need to have `rdklib` Lambda layer installed in your AWS account (see `--generate-lambda-layer` in `rdk init` above), and will need `rdklib` installed locally if you plan to run unit tests locally. Alternatively, you can explicitly specify a non-`rdklib` runtime like `python3.13`.
@@ -162,7 +162,7 @@ The test file includes setup for the MagicMock library that can be used to stub
162
162
If you need to change the parameters of a Config rule in your working directory you can use the `modify` command. Any parameters you specify will overwrite existing values, any that you do not specify will not be changed.
Modified Rule 'MyRule'. Use the `deploy`command to push your changes to AWS.
168
168
```
@@ -259,7 +259,7 @@ CloudFormation template written to remote-rule-template.json
259
259
It is now possible to define a resource type that is not yet supported by `rdk`. To disable the supported resource check use the optional flag `--skip-supported-resource-check` during the create command.
In your working directory, use the `create` command to start creating a new custom rule. You must specify the runtime for the Lambda function that will back the Rule, and you can also specify a resource type (or comma-separated list of types) that the Rule will evaluate or a maximum frequency for a periodic rule. This will add a new directory for the rule and populate it with several files, including a skeleton of your Lambda code.
94
94
95
-
> :warning: By default, if you do not specify a runtime, `rdk` will select the latest `rdklib` Python runtime (eg. `python3.12-lib`). If you use an `rdklib` runtime, you will need to have `rdklib` Lambda layer installed in your AWS account (see `--generate-lambda-layer` in `rdk init` above), and will need `rdklib` installed locally if you plan to run unit tests locally. Alternatively, you can explicitly specify a non-`rdklib` runtime like `python3.12`.
95
+
> :warning: By default, if you do not specify a runtime, `rdk` will select the latest `rdklib` Python runtime (eg. `python3.13-lib`). If you use an `rdklib` runtime, you will need to have `rdklib` Lambda layer installed in your AWS account (see `--generate-lambda-layer` in `rdk init` above), and will need `rdklib` installed locally if you plan to run unit tests locally. Alternatively, you can explicitly specify a non-`rdklib` runtime like `python3.13`.
@@ -162,7 +162,7 @@ The test file includes setup for the MagicMock library that can be used to stub
162
162
If you need to change the parameters of a Config rule in your working directory you can use the `modify` command. Any parameters you specify will overwrite existing values, any that you do not specify will not be changed.
Modified Rule 'MyRule'. Use the `deploy`command to push your changes to AWS.
168
168
```
@@ -259,7 +259,7 @@ CloudFormation template written to remote-rule-template.json
259
259
It is now possible to define a resource type that is not yet supported by `rdk`. To disable the supported resource check use the optional flag `--skip-supported-resource-check` during the create command.
Copy file name to clipboardExpand all lines: pyproject.toml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
8
8
[tool.poetry]
9
9
name = "rdk"
10
-
version = "0.17.18"
10
+
version = "0.17.19"
11
11
description = "Rule Development Kit CLI for AWS Config"
Copy file name to clipboardExpand all lines: rdk/__init__.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,4 +6,4 @@
6
6
#
7
7
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
0 commit comments