Interface CfnMemberInvitationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMemberInvitationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:17.262Z")
@Stability(Stable)
public interface CfnMemberInvitationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMemberInvitation
.
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.*; CfnMemberInvitationProps cfnMemberInvitationProps = CfnMemberInvitationProps.builder() .graphArn("graphArn") .memberEmailAddress("memberEmailAddress") .memberId("memberId") // the properties below are optional .disableEmailNotification(false) .message("message") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMemberInvitationProps
static final class
An implementation forCfnMemberInvitationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Whether to send an invitation email to the member account.The ARN of the behavior graph to invite the account to contribute data to.The root user email address of the invited account.The AWS account identifier of the invited account.default String
Customized text to include in the invitation email message.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGraphArn
The ARN of the behavior graph to invite the account to contribute data to.- See Also:
-
getMemberEmailAddress
The root user email address of the invited account.If the email address provided is not the root user email address for the provided account, the invitation creation fails.
- See Also:
-
getMemberId
The AWS account identifier of the invited account.- See Also:
-
getDisableEmailNotification
Whether to send an invitation email to the member account.If set to true, the member account does not receive an invitation email.
Default: - false
- See Also:
-
getMessage
Customized text to include in the invitation email message.- See Also:
-
builder
- Returns:
- a
CfnMemberInvitationProps.Builder
ofCfnMemberInvitationProps
-