Interface CfnMasterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMasterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.172Z")
@Stability(Stable)
public interface CfnMasterProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMaster
.
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.guardduty.*; CfnMasterProps cfnMasterProps = CfnMasterProps.builder() .detectorId("detectorId") .masterId("masterId") // the properties below are optional .invitationId("invitationId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMasterProps
static final class
An implementation forCfnMasterProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMasterProps.Builder
builder()
The unique ID of the detector of the GuardDuty member account.default String
The ID of the invitation that is sent to the account designated as a member account.The AWS account ID of the account designated as the GuardDuty administrator account.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDetectorId
The unique ID of the detector of the GuardDuty member account. -
getMasterId
The AWS account ID of the account designated as the GuardDuty administrator account. -
getInvitationId
The ID of the invitation that is sent to the account designated as a member account.You can find the invitation ID by using the ListInvitation action of the GuardDuty API.
-
builder
- Returns:
- a
CfnMasterProps.Builder
ofCfnMasterProps
-