Member Args
data class MemberArgs(val accountId: Output<String>? = null, val disableEmailNotification: Output<Boolean>? = null, val emailAddress: Output<String>? = null, val graphArn: Output<String>? = null, val message: Output<String>? = null) : ConvertibleToJava<MemberArgs>
Provides a resource to manage an Amazon Detective Member.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.detective.Graph("example", {});
const exampleMember = new aws.detective.Member("example", {
accountId: "AWS ACCOUNT ID",
emailAddress: "EMAIL",
graphArn: example.graphArn,
message: "Message of the invitation",
disableEmailNotification: true,
});
Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.detective.Graph("example")
example_member = aws.detective.Member("example",
account_id="AWS ACCOUNT ID",
email_address="EMAIL",
graph_arn=example.graph_arn,
message="Message of the invitation",
disable_email_notification=True)
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Detective.Graph("example");
var exampleMember = new Aws.Detective.Member("example", new()
{
AccountId = "AWS ACCOUNT ID",
EmailAddress = "EMAIL",
GraphArn = example.GraphArn,
Message = "Message of the invitation",
DisableEmailNotification = true,
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/detective"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := detective.NewGraph(ctx, "example", nil)
if err != nil {
return err
}
_, err = detective.NewMember(ctx, "example", &detective.MemberArgs{
AccountId: pulumi.String("AWS ACCOUNT ID"),
EmailAddress: pulumi.String("EMAIL"),
GraphArn: example.GraphArn,
Message: pulumi.String("Message of the invitation"),
DisableEmailNotification: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.detective.Graph;
import com.pulumi.aws.detective.Member;
import com.pulumi.aws.detective.MemberArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Graph("example");
var exampleMember = new Member("exampleMember", MemberArgs.builder()
.accountId("AWS ACCOUNT ID")
.emailAddress("EMAIL")
.graphArn(example.graphArn())
.message("Message of the invitation")
.disableEmailNotification(true)
.build());
}
}
Content copied to clipboard
resources:
example:
type: aws:detective:Graph
exampleMember:
type: aws:detective:Member
name: example
properties:
accountId: AWS ACCOUNT ID
emailAddress: EMAIL
graphArn: ${example.graphArn}
message: Message of the invitation
disableEmailNotification: true
Content copied to clipboard
Import
Using pulumi import
, import aws_detective_member
using the ARN of the graph followed by the account ID of the member account. For example:
$ pulumi import aws:detective/member:Member example arn:aws:detective:us-east-1:123456789101:graph:231684d34gh74g4bae1dbc7bd807d02d/123456789012
Content copied to clipboard
Constructors
Properties
Link copied to clipboard
If set to true, then the root user of the invited account will not receive an email notification. This notification is in addition to an alert that the root user receives in AWS Personal Health Dashboard. By default, this is set to false
.
Link copied to clipboard
Email address for the account.