interface SecurityRequirementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnSecurityRequirementPackPropsMixin.SecurityRequirementProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnSecurityRequirementPackPropsMixin_SecurityRequirementProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnSecurityRequirementPackPropsMixin.SecurityRequirementProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnSecurityRequirementPackPropsMixin.SecurityRequirementProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnSecurityRequirementPackPropsMixin » 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/cfn-property-mixins';
const securityRequirementProperty: securityagent.CfnSecurityRequirementPackPropsMixin.SecurityRequirementProperty = {
description: 'description',
domain: 'domain',
evaluation: 'evaluation',
name: 'name',
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
(optional)
Description of the security requirement.
domain?
Type:
string
(optional)
Security domain this requirement belongs to.
evaluation?
Type:
string
(optional)
How to evaluate compliance with this requirement.
name?
Type:
string
(optional)
Name of the security requirement.
remediation?
Type:
string
(optional)
How to remediate non-compliance.

.NET
Go
Java
Python
TypeScript