Show / Hide Table of Contents

Namespace Pulumi.Aws.Macie

Classes

MemberAccountAssociation

NOTE: This resource interacts with Amazon Macie Classic. Macie Classic cannot be activated in new accounts. See the FAQ for more details.

Associates an AWS account with Amazon Macie as a member account.

NOTE: Before using Amazon Macie for the first time it must be enabled manually. Instructions are here.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Macie.MemberAccountAssociation("example", new Aws.Macie.MemberAccountAssociationArgs
    {
        MemberAccountId = "123456789012",
    });
}

}

MemberAccountAssociationArgs

MemberAccountAssociationState

S3BucketAssociation

NOTE: This resource interacts with Amazon Macie Classic. Macie Classic cannot be activated in new accounts. See the FAQ for more details.

Associates an S3 resource with Amazon Macie for monitoring and data classification.

NOTE: Before using Amazon Macie for the first time it must be enabled manually. Instructions are here.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Macie.S3BucketAssociation("example", new Aws.Macie.S3BucketAssociationArgs
    {
        BucketName = "tf-macie-example",
        ClassificationType = new Aws.Macie.Inputs.S3BucketAssociationClassificationTypeArgs
        {
            OneTime = "FULL",
        },
        Prefix = "data",
    });
}

}

S3BucketAssociationArgs

S3BucketAssociationState

Back to top Copyright 2016-2020, Pulumi Corporation.