AWS Macie Invitation Accepter

This page shows how to write Terraform and CloudFormation for Macie Invitation Accepter and write them securely.

aws_macie2_invitation_accepter (Terraform)

The Invitation Accepter in Macie can be configured in Terraform with the resource name aws_macie2_invitation_accepter. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

The following arguments are supported:

  • administrator_account_id - (Required) The AWS account ID for the account that sent the invitation.

In addition to all arguments above, the following attributes are exported:

  • id - The unique identifier (ID) of the macie invitation accepter.
  • invitation_id - The unique identifier for the invitation.

Explanation in Terraform Registry

Provides a resource to manage an Amazon Macie Invitation Accepter.

AWS::Macie::FindingsFilter (CloudFormation)

The FindingsFilter in Macie can be configured in CloudFormation with the resource name AWS::Macie::FindingsFilter. The following sections describe 8 examples of how to use the resource and its parameters.

Example Usage from GitHub

product.template-us-west-1.yaml#L9
    Type: AWS::Macie::FindingsFilter
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html
    Properties:
      Name: !Ref 'Name'
      FindingCriteria: {}
Outputs:
product.template-sa-east-1.yaml#L9
    Type: AWS::Macie::FindingsFilter
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html
    Properties:
      Name: !Ref 'Name'
      FindingCriteria: {}
Outputs:
product.template-ap-northeast-2.yaml#L9
    Type: AWS::Macie::FindingsFilter
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html
    Properties:
      Name: !Ref 'Name'
      FindingCriteria: {}
Outputs:
product.template-us-east-1.yaml#L9
    Type: AWS::Macie::FindingsFilter
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html
    Properties:
      Name: !Ref 'Name'
      FindingCriteria: {}
Outputs:
product.template-eu-north-1.yaml#L9
    Type: AWS::Macie::FindingsFilter
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html
    Properties:
      Name: !Ref 'Name'
      FindingCriteria: {}
Outputs:
MacieFindingsFilterSpecification.json#L3
    "AWS::Macie::FindingsFilter.Criterion": {
      "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-findingsfilter-criterion.html"
    },
    "AWS::Macie::FindingsFilter.FindingCriteria": {
      "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-findingsfilter-findingcriteria.html",
      "Properties": {
awsResouceIconMatches.json#L2214
        "resourceType": "AWS::Macie::FindingsFilter",
        "filePath": null
      },
      {
        "resourceType": "AWS::Macie::CustomDataIdentifier",
        "filePath": null
template.json#L1687
    "AWS::Macie::FindingsFilter": {
      "Type": "AWS::Macie::FindingsFilter",
      "Properties": {}
    },
    "AWS::EC2::LaunchTemplate": {
      "Type": "AWS::EC2::LaunchTemplate",

Parameters

Explanation in CloudFormation Registry

The AWS::Macie::FindingsFilter resource represents an individual findings filter that you create and save to view, analyze, and manage findings. A findings filter is a set of criteria that specifies which findings to include in the results of a query for findings. A findings filter can also perform specific actions on findings that meet the filter's criteria.

A Session must exist for the account before you can create a FindingsFilter. Use a DependsOn attribute to ensure that the Session is created before the other resources. For example, "DependsOn: Session".

Frequently asked questions

What is AWS Macie Invitation Accepter?

AWS Macie Invitation Accepter is a resource for Macie of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Macie Invitation Accepter?

For CloudFormation, the awslabs/aws-service-catalog-products, awslabs/aws-service-catalog-products and awslabs/aws-service-catalog-products source code examples are useful. See the CloudFormation Example section for further details.