Member
Provides a resource to manage an Amazon Detective Member.
Example Usage
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 exampleGraph = new Graph("exampleGraph");
var exampleMember = new Member("exampleMember", MemberArgs.builder()
.accountId("AWS ACCOUNT ID")
.emailAddress("EMAIL")
.graphArn(exampleGraph.id())
.message("Message of the invitation")
.disableEmailNotification(true)
.build());
}
}
Content copied to clipboard
Import
aws_detective_member
can be imported using the ARN of the graph followed by the account ID of the member account, e.g.
$ pulumi import aws:detective/member:Member example arn:aws:detective:us-east-1:123456789101:graph:231684d34gh74g4bae1dbc7bd807d02d/123456789012
Content copied to clipboard