interface CfnPolicyAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnPolicyAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnPolicyAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnPolicyAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnPolicyAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnPolicyAssociationMixinProps |
Properties for CfnPolicyAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const cfnPolicyAssociationMixinProps: securityhub_mixins.CfnPolicyAssociationMixinProps = {
configurationPolicyId: 'configurationPolicyId',
targetId: 'targetId',
targetType: 'targetType',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The universally unique identifier (UUID) of the configuration policy. |
| target | string | The identifier of the target account, organizational unit, or the root. |
| target | string | Specifies whether the target is an AWS account , organizational unit, or the root. |
configurationPolicyId?
Type:
string
(optional)
The universally unique identifier (UUID) of the configuration policy.
A self-managed configuration has no UUID. The identifier of a self-managed configuration is SELF_MANAGED_SECURITY_HUB .
targetId?
Type:
string
(optional)
The identifier of the target account, organizational unit, or the root.
targetType?
Type:
string
(optional)
Specifies whether the target is an AWS account , organizational unit, or the root.

.NET
Go
Java
Python
TypeScript