Interface CfnMemberProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMemberProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:00.381Z")
@Stability(Stable)
public interface CfnMemberProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMember
.
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.*; CfnMemberProps cfnMemberProps = CfnMemberProps.builder() .email("email") // the properties below are optional .detectorId("detectorId") .disableEmailNotification(false) .memberId("memberId") .message("message") .status("status") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMemberProps
static final class
An implementation forCfnMemberProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMemberProps.Builder
builder()
default String
The ID of the detector associated with the GuardDuty service to add the member to.default Object
Specifies whether or not to disable email notification for the member account that you invite.getEmail()
The email address associated with the member account.default String
The AWS account ID of the account to designate as a member.default String
The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members.default String
You can use theStatus
property to update the status of the relationship between the member account and its administrator account.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEmail
The email address associated with the member account.- See Also:
-
getDetectorId
The ID of the detector associated with the GuardDuty service to add the member to.- See Also:
-
getDisableEmailNotification
Specifies whether or not to disable email notification for the member account that you invite.- See Also:
-
getMemberId
The AWS account ID of the account to designate as a member.- See Also:
-
getMessage
The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members.- See Also:
-
getStatus
You can use theStatus
property to update the status of the relationship between the member account and its administrator account.Valid values are
Created
andInvited
when using anAWS::GuardDuty::Member
resource. If the value for this property is not provided or set toCreated
, a member account is created but not invited. If the value of this property is set toInvited
, a member account is created and invited.- See Also:
-
builder
- Returns:
- a
CfnMemberProps.Builder
ofCfnMemberProps
-