interface CfnSecurityRequirementPackMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnSecurityRequirementPackMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnSecurityRequirementPackMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnSecurityRequirementPackMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnSecurityRequirementPackMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnSecurityRequirementPackMixinProps |
Properties for CfnSecurityRequirementPackPropsMixin.
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 cfnSecurityRequirementPackMixinProps: securityagent.CfnSecurityRequirementPackMixinProps = {
description: 'description',
kmsKeyId: 'kmsKeyId',
name: 'name',
securityRequirements: [{
description: 'description',
domain: 'domain',
evaluation: 'evaluation',
name: 'name',
remediation: 'remediation',
}],
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Description of the pack. |
| kms | string | KMS key for client-side encryption of pack contents. |
| name? | string | Name of the security requirement pack. |
| 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. |
description?
Type:
string
(optional)
Description of the pack.
kmsKeyId?
Type:
string
(optional)
KMS key for client-side encryption of pack contents.
name?
Type:
string
(optional)
Name of the security requirement pack.
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