Interface CfnMemberInvitationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMemberInvitationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:56.247Z") @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();
 
  • Method Details

    • getGraphArn

      @Stability(Stable) @NotNull String getGraphArn()
      The ARN of the behavior graph to invite the account to contribute data to.
    • getMemberEmailAddress

      @Stability(Stable) @NotNull String 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.

    • getMemberId

      @Stability(Stable) @NotNull String getMemberId()
      The AWS account identifier of the invited account.
    • getDisableEmailNotification

      @Stability(Stable) @Nullable default Object getDisableEmailNotification()
      Whether to send an invitation email to the member account.

      If set to true, the member account does not receive an invitation email.

    • getMessage

      @Stability(Stable) @Nullable default String getMessage()
      Customized text to include in the invitation email message.
    • builder

      @Stability(Stable) static CfnMemberInvitationProps.Builder builder()
      Returns:
      a CfnMemberInvitationProps.Builder of CfnMemberInvitationProps