Interface CfnMasterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMasterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:21:56.214Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMasterPropsstatic final classAn implementation forCfnMasterProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMasterProps.Builderbuilder()The unique ID of the detector of the GuardDuty member account.default StringThe 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.- 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 using the ListInvitation action of the GuardDuty API.
- See Also:
-
builder
- Returns:
- a
CfnMasterProps.BuilderofCfnMasterProps
-