Interface CfnGraphProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGraphProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:17.261Z")
@Stability(Stable)
public interface CfnGraphProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGraph
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.detective.*; CfnGraphProps cfnGraphProps = CfnGraphProps.builder() .autoEnableMembers(false) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGraphProps
static final class
An implementation forCfnGraphProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGraphProps.Builder
builder()
default Object
Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph.getTags()
The tag values to assign to the new behavior graph.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoEnableMembers
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::OrganizationAdminDefault: - false
- See Also:
-
getTags
The tag values to assign to the new behavior graph.- See Also:
-
builder
- Returns:
- a
CfnGraphProps.Builder
ofCfnGraphProps
-