Interface CfnMasterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMasterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:20.007Z")
@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();
- See Also:
-
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.To find the
detectorId
in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.- See Also:
-
getMasterId
The AWS account ID of the account designated as the GuardDuty administrator account.- See Also:
-
getInvitationId
The ID of the invitation that is sent to the account designated as a member account.You can find the invitation ID by running the ListInvitations in the GuardDuty API Reference .
- See Also:
-
builder
- Returns:
- a
CfnMasterProps.Builder
ofCfnMasterProps
-