diff --git a/security-hub/standards/docs/README.md b/security-hub/standards/docs/README.md
index 711202e3..f5e12415 100644
--- a/security-hub/standards/docs/README.md
+++ b/security-hub/standards/docs/README.md
@@ -16,8 +16,6 @@ To declare this entity in your AWS CloudFormation template, use the following sy
"CIS12" : String,
"PCIDSS" : String,
"AFSBP" : String
- "NIST" : String
-
}
}
@@ -31,7 +29,6 @@ Properties:
CIS12: String
PCIDSS: String
AFSBP: String
- NIST: String
## Properties
@@ -76,16 +73,6 @@ _Allowed Values_: ENABLED
| DISABLED
_Update requires_: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)
-#### NIST
-
-_Required_: Yes
-
-_Type_: String
-
-_Allowed Values_: ENABLED
| DISABLED
-
-_Update requires_: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)
-
## Return Values
### Ref
diff --git a/security-hub/standards/package.json b/security-hub/standards/package.json
index 683be9d5..58618237 100644
--- a/security-hub/standards/package.json
+++ b/security-hub/standards/package.json
@@ -1,6 +1,6 @@
{
"name": "community-securityhub-standards",
- "version": "0.1.4",
+ "version": "0.1.5",
"description": "AWS custom resource provider named Community::SecurityHub::Standards.",
"private": true,
"main": "dist/handlers.js",
diff --git a/security-hub/standards/src/models.ts b/security-hub/standards/src/models.ts
index f0c249d8..fbada7ac 100644
--- a/security-hub/standards/src/models.ts
+++ b/security-hub/standards/src/models.ts
@@ -57,16 +57,6 @@ export class ResourceModel extends BaseModel {
)
aFSBP?: Optional;
- @Expose({ name: 'NIST' })
- @Transform(
- (value: any, obj: any) =>
- transformValue(String, 'nIST', value, obj, []),
- {
- toClassOnly: true,
- }
- )
- nIST?: Optional;
-
@Exclude()
public getPrimaryIdentifier(): Dict {
const identifier: Dict = {};