interface SecurityRequirementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnSecurityRequirementPack.SecurityRequirementProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnSecurityRequirementPack_SecurityRequirementProperty |
Java | software.amazon.awscdk.services.securityagent.CfnSecurityRequirementPack.SecurityRequirementProperty |
Python | aws_cdk.aws_securityagent.CfnSecurityRequirementPack.SecurityRequirementProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnSecurityRequirementPack » SecurityRequirementProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityagent as securityagent } from 'aws-cdk-lib';
const securityRequirementProperty: securityagent.CfnSecurityRequirementPack.SecurityRequirementProperty = {
description: 'description',
domain: 'domain',
evaluation: 'evaluation',
name: 'name',
// the properties below are optional
remediation: 'remediation',
};
Properties
| Name | Type | Description |
|---|---|---|
| description | string | Description of the security requirement. |
| domain | string | Security domain this requirement belongs to. |
| evaluation | string | How to evaluate compliance with this requirement. |
| name | string | Name of the security requirement. |
| remediation? | string | How to remediate non-compliance. |
description
Type:
string
Description of the security requirement.
domain
Type:
string
Security domain this requirement belongs to.
evaluation
Type:
string
How to evaluate compliance with this requirement.
name
Type:
string
Name of the security requirement.
remediation?
Type:
string
(optional)
How to remediate non-compliance.

.NET
Go
Java
Python
TypeScript