Class CfnMemberInvitation
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.detective.CfnMemberInvitation
- All Implemented Interfaces:
IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:06.183Z")
@Stability(Stable)
public class CfnMemberInvitation
extends CfnResource
implements IInspectable
The
AWS::Detective::MemberInvitation
resource is an Amazon Detective resource type that creates an invitation to join a Detective behavior graph.
The administrator account can choose whether to send an email notification of the invitation to the root user email address of the AWS account.
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.*; CfnMemberInvitation cfnMemberInvitation = CfnMemberInvitation.Builder.create(this, "MyCfnMemberInvitation") .graphArn("graphArn") .memberEmailAddress("memberEmailAddress") .memberId("memberId") // the properties below are optional .disableEmailNotification(false) .message("message") .build();
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnMemberInvitation
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnMemberInvitation
(software.amazon.jsii.JsiiObjectRef objRef) CfnMemberInvitation
(software.constructs.Construct scope, String id, CfnMemberInvitationProps props) -
Method Summary
Modifier and TypeMethodDescriptionWhether 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.Customized text to include in the invitation email message.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
Whether to send an invitation email to the member account.void
Whether to send an invitation email to the member account.void
setGraphArn
(String value) The ARN of the behavior graph to invite the account to contribute data to.void
setMemberEmailAddress
(String value) The root user email address of the invited account.void
setMemberId
(String value) The AWS account identifier of the invited account.void
setMessage
(String value) Customized text to include in the invitation email message.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnMemberInvitation
protected CfnMemberInvitation(software.amazon.jsii.JsiiObjectRef objRef) -
CfnMemberInvitation
protected CfnMemberInvitation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnMemberInvitation
@Stability(Stable) public CfnMemberInvitation(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnMemberInvitationProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getGraphArn
The ARN of the behavior graph to invite the account to contribute data to. -
setGraphArn
The ARN of the behavior graph to invite the account to contribute data to. -
getMemberEmailAddress
The root user email address of the invited account. -
setMemberEmailAddress
The root user email address of the invited account. -
getMemberId
The AWS account identifier of the invited account. -
setMemberId
The AWS account identifier of the invited account. -
getDisableEmailNotification
Whether to send an invitation email to the member account. -
setDisableEmailNotification
Whether to send an invitation email to the member account. -
setDisableEmailNotification
Whether to send an invitation email to the member account. -
getMessage
Customized text to include in the invitation email message. -
setMessage
Customized text to include in the invitation email message.
-