interface CfnSecurityRequirementPackProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnSecurityRequirementPackProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnSecurityRequirementPackProps |
Java | software.amazon.awscdk.services.securityagent.CfnSecurityRequirementPackProps |
Python | aws_cdk.aws_securityagent.CfnSecurityRequirementPackProps |
TypeScript | aws-cdk-lib » aws_securityagent » CfnSecurityRequirementPackProps |
Properties for defining a CfnSecurityRequirementPack.
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 cfnSecurityRequirementPackProps: securityagent.CfnSecurityRequirementPackProps = {
name: 'name',
// the properties below are optional
description: 'description',
kmsKeyId: 'kmsKeyId',
securityRequirements: [{
description: 'description',
domain: 'domain',
evaluation: 'evaluation',
name: 'name',
// the properties below are optional
remediation: 'remediation',
}],
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the security requirement pack. |
| description? | string | Description of the pack. |
| kms | string | KMS key for client-side encryption of pack contents. |
| security | IResolvable | (IResolvable | Security)[] | Security requirements within this pack. |
| status? | string | Whether the pack is enabled or disabled. |
| tags? | Cfn[] | Tags for the security requirement pack. |
name
Type:
string
Name of the security requirement pack.
description?
Type:
string
(optional)
Description of the pack.
kmsKeyId?
Type:
string
(optional)
KMS key for client-side encryption of pack contents.
securityRequirements?
Type:
IResolvable | (IResolvable | Security)[]
(optional)
Security requirements within this pack.
status?
Type:
string
(optional)
Whether the pack is enabled or disabled.
tags?
Type:
Cfn[]
(optional)
Tags for the security requirement pack.

.NET
Go
Java
Python
TypeScript