ReceiptFilter

Provides an SES receipt filter resource

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
    public MyStack()
    {
        var filter = new Aws.Ses.ReceiptFilter("filter", new Aws.Ses.ReceiptFilterArgs
        {
            Cidr = "10.10.10.10",
            Policy = "Block",
        });
    }

}
package main

import (
    "github.com/pulumi/pulumi-aws/sdk/v2/go/aws/ses"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        _, err := ses.NewReceiptFilter(ctx, "filter", &ses.ReceiptFilterArgs{
            Cidr:   pulumi.String("10.10.10.10"),
            Policy: pulumi.String("Block"),
        })
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_aws as aws

filter = aws.ses.ReceiptFilter("filter",
    cidr="10.10.10.10",
    policy="Block")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const filter = new aws.ses.ReceiptFilter("filter", {
    cidr: "10.10.10.10",
    policy: "Block",
});

Create a ReceiptFilter Resource

def ReceiptFilter(resource_name, opts=None, cidr=None, name=None, policy=None, __props__=None);
name string
The unique name of the resource.
args ReceiptFilterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args ReceiptFilterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ReceiptFilterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

ReceiptFilter Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The ReceiptFilter resource accepts the following input properties:

Cidr string

The IP address or address range to filter, in CIDR notation

Policy string

Block or Allow

Name string

The name of the filter

Cidr string

The IP address or address range to filter, in CIDR notation

Policy string

Block or Allow

Name string

The name of the filter

cidr string

The IP address or address range to filter, in CIDR notation

policy string

Block or Allow

name string

The name of the filter

cidr str

The IP address or address range to filter, in CIDR notation

policy str

Block or Allow

name str

The name of the filter

Outputs

All input properties are implicitly available as output properties. Additionally, the ReceiptFilter resource produces the following output properties:

Arn string

The SES receipt filter ARN.

Id string
The provider-assigned unique ID for this managed resource.
Arn string

The SES receipt filter ARN.

Id string
The provider-assigned unique ID for this managed resource.
arn string

The SES receipt filter ARN.

id string
The provider-assigned unique ID for this managed resource.
arn str

The SES receipt filter ARN.

id str
The provider-assigned unique ID for this managed resource.

Look up an Existing ReceiptFilter Resource

Get an existing ReceiptFilter resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ReceiptFilterState, opts?: CustomResourceOptions): ReceiptFilter
static get(resource_name, id, opts=None, arn=None, cidr=None, name=None, policy=None, __props__=None);
func GetReceiptFilter(ctx *Context, name string, id IDInput, state *ReceiptFilterState, opts ...ResourceOption) (*ReceiptFilter, error)
public static ReceiptFilter Get(string name, Input<string> id, ReceiptFilterState? state, CustomResourceOptions? opts = null)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

Arn string

The SES receipt filter ARN.

Cidr string

The IP address or address range to filter, in CIDR notation

Name string

The name of the filter

Policy string

Block or Allow

Arn string

The SES receipt filter ARN.

Cidr string

The IP address or address range to filter, in CIDR notation

Name string

The name of the filter

Policy string

Block or Allow

arn string

The SES receipt filter ARN.

cidr string

The IP address or address range to filter, in CIDR notation

name string

The name of the filter

policy string

Block or Allow

arn str

The SES receipt filter ARN.

cidr str

The IP address or address range to filter, in CIDR notation

name str

The name of the filter

policy str

Block or Allow

Package Details

Repository
https://github.com/pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.