interface CfnGraphMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Detective.Mixins.CfnGraphMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdetective/mixins#CfnGraphMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.detective.mixins.CfnGraphMixinProps |
Python | aws_cdk.mixins_preview.aws_detective.mixins.CfnGraphMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_detective » mixins » CfnGraphMixinProps |
Properties for CfnGraphPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as detective_mixins } from '@aws-cdk/mixins-preview/aws-detective';
const cfnGraphMixinProps: detective_mixins.CfnGraphMixinProps = {
autoEnableMembers: false,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | boolean | IResolvable | Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph. |
| tags? | Cfn[] | The tag values to assign to the new behavior graph. |
autoEnableMembers?
Type:
boolean | IResolvable
(optional, default: false)
Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph.
By default, this property is set to false . If you want to change the value of this property, you must be the Detective administrator for the organization. For more information on setting a Detective administrator account, see AWS::Detective::OrganizationAdmin .
tags?
Type:
Cfn[]
(optional)
The tag values to assign to the new behavior graph.

.NET
Go
Java
Python
TypeScript