Skip to content

Commit

Permalink
chore: bump community-securityhub-standards to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
OlafConijn committed Mar 21, 2023
1 parent a42b036 commit bf1ffd5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 24 deletions.
13 changes: 0 additions & 13 deletions security-hub/standards/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ To declare this entity in your AWS CloudFormation template, use the following sy
"<a href="#cis12" title="CIS12">CIS12</a>" : <i>String</i>,
"<a href="#pcidss" title="PCIDSS">PCIDSS</a>" : <i>String</i>,
"<a href="#afsbp" title="AFSBP">AFSBP</a>" : <i>String</i>
"<a href="#nist" title="NIST">NIST</a>" : <i>String</i>

}
}
</pre>
Expand All @@ -31,7 +29,6 @@ Properties:
<a href="#cis12" title="CIS12">CIS12</a>: <i>String</i>
<a href="#pcidss" title="PCIDSS">PCIDSS</a>: <i>String</i>
<a href="#afsbp" title="AFSBP">AFSBP</a>: <i>String</i>
<a href="#nist" title="NIST">NIST</a>: <i>String</i>
</pre>

## Properties
Expand Down Expand Up @@ -76,16 +73,6 @@ _Allowed Values_: <code>ENABLED</code> | <code>DISABLED</code>

_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_: <code>ENABLED</code> | <code>DISABLED</code>

_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
Expand Down
2 changes: 1 addition & 1 deletion security-hub/standards/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
10 changes: 0 additions & 10 deletions security-hub/standards/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,6 @@ export class ResourceModel extends BaseModel {
)
aFSBP?: Optional<string>;

@Expose({ name: 'NIST' })
@Transform(
(value: any, obj: any) =>
transformValue(String, 'nIST', value, obj, []),
{
toClassOnly: true,
}
)
nIST?: Optional<string>;

@Exclude()
public getPrimaryIdentifier(): Dict {
const identifier: Dict = {};
Expand Down

0 comments on commit bf1ffd5

Please sign in to comment.