Skip to content

Commit

Permalink
chore(config): fix typo in IoT TwinMaker Workspace config rule enum (#…
Browse files Browse the repository at this point in the history
…32655)

### Issue # (if applicable)

N/A
### Reason for this change
A Enum of IoT TwinMaker  Workspace enum is invalid.

`AWS::IoTwinMaker::Workspace`



### Description of changes
Update enum value.

`AWS::IoTTwinMaker::Workspace`



### Describe any new or updated permissions being added
Nothing


### Description of how you validated changes
Nothing because only enum name was updated


### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
mazyu36 authored Dec 27, 2024
1 parent 982be5c commit 07e6dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-config/lib/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2488,7 +2488,7 @@ export class ResourceType {
/** AWS IoT mitigation action */
public static readonly IOT_MITIGATION_ACTION = new ResourceType('AWS::IoT::MitigationAction');
/** AWS IoT TwinMaker workspace */
public static readonly IOT_TWINMAKER_WORKSPACE = new ResourceType('AWS::IoTwinMaker::Workspace');
public static readonly IOT_TWINMAKER_WORKSPACE = new ResourceType('AWS::IoTTwinMaker::Workspace');
/** AWS IoT TwinMaker entity */
public static readonly IOT_TWINMAKER_ENTITY = new ResourceType('AWS::IoTTwinMaker::Entity');
/** AWS IoT Analytics datastore */
Expand Down

0 comments on commit 07e6dd3

Please sign in to comment.