1. Registry
  2. Packages
  3. AWS
  4. API Docs
  5. mailmanager
  6. IngressPoint
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi

    Manages an AWS SES Mail Manager Ingress Point.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.mailmanager.IngressPoint("example", {
        name: "example",
        type: "OPEN",
        ruleSetId: exampleAwsMailmanagerRuleSet.id,
        trafficPolicyId: exampleAwsMailmanagerTrafficPolicy.id,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.mailmanager.IngressPoint("example",
        name="example",
        type="OPEN",
        rule_set_id=example_aws_mailmanager_rule_set["id"],
        traffic_policy_id=example_aws_mailmanager_traffic_policy["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/mailmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mailmanager.NewIngressPoint(ctx, "example", &mailmanager.IngressPointArgs{
    			Name:            pulumi.String("example"),
    			Type:            pulumi.String("OPEN"),
    			RuleSetId:       pulumi.Any(exampleAwsMailmanagerRuleSet.Id),
    			TrafficPolicyId: pulumi.Any(exampleAwsMailmanagerTrafficPolicy.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.MailManager.IngressPoint("example", new()
        {
            Name = "example",
            Type = "OPEN",
            RuleSetId = exampleAwsMailmanagerRuleSet.Id,
            TrafficPolicyId = exampleAwsMailmanagerTrafficPolicy.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.mailmanager.IngressPoint;
    import com.pulumi.aws.mailmanager.IngressPointArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 IngressPoint("example", IngressPointArgs.builder()
                .name("example")
                .type("OPEN")
                .ruleSetId(exampleAwsMailmanagerRuleSet.id())
                .trafficPolicyId(exampleAwsMailmanagerTrafficPolicy.id())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:mailmanager:IngressPoint
        properties:
          name: example
          type: OPEN
          ruleSetId: ${exampleAwsMailmanagerRuleSet.id}
          trafficPolicyId: ${exampleAwsMailmanagerTrafficPolicy.id}
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_mailmanager_ingresspoint" "example" {
      name              = "example"
      type              = "OPEN"
      rule_set_id       = exampleAwsMailmanagerRuleSet.id
      traffic_policy_id = exampleAwsMailmanagerTrafficPolicy.id
    }
    

    Authenticated Ingress Point with SMTP Password

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.mailmanager.IngressPoint("example", {
        ingressPointConfiguration: {
            smtpPasswordWo: smtpPassword,
            smtpPasswordWoVersion: 1,
        },
        name: "example",
        type: "AUTH",
        ruleSetId: exampleAwsMailmanagerRuleSet.id,
        trafficPolicyId: exampleAwsMailmanagerTrafficPolicy.id,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.mailmanager.IngressPoint("example",
        ingress_point_configuration={
            "smtp_password_wo": smtp_password,
            "smtp_password_wo_version": 1,
        },
        name="example",
        type="AUTH",
        rule_set_id=example_aws_mailmanager_rule_set["id"],
        traffic_policy_id=example_aws_mailmanager_traffic_policy["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/mailmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mailmanager.NewIngressPoint(ctx, "example", &mailmanager.IngressPointArgs{
    			IngressPointConfiguration: &mailmanager.IngressPointIngressPointConfigurationArgs{
    				SmtpPasswordWo:        pulumi.Any(smtpPassword),
    				SmtpPasswordWoVersion: pulumi.Int(1),
    			},
    			Name:            pulumi.String("example"),
    			Type:            pulumi.String("AUTH"),
    			RuleSetId:       pulumi.Any(exampleAwsMailmanagerRuleSet.Id),
    			TrafficPolicyId: pulumi.Any(exampleAwsMailmanagerTrafficPolicy.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.MailManager.IngressPoint("example", new()
        {
            IngressPointConfiguration = new Aws.MailManager.Inputs.IngressPointIngressPointConfigurationArgs
            {
                SmtpPasswordWo = smtpPassword,
                SmtpPasswordWoVersion = 1,
            },
            Name = "example",
            Type = "AUTH",
            RuleSetId = exampleAwsMailmanagerRuleSet.Id,
            TrafficPolicyId = exampleAwsMailmanagerTrafficPolicy.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.mailmanager.IngressPoint;
    import com.pulumi.aws.mailmanager.IngressPointArgs;
    import com.pulumi.aws.mailmanager.inputs.IngressPointIngressPointConfigurationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 IngressPoint("example", IngressPointArgs.builder()
                .ingressPointConfiguration(IngressPointIngressPointConfigurationArgs.builder()
                    .smtpPasswordWo(smtpPassword)
                    .smtpPasswordWoVersion(1)
                    .build())
                .name("example")
                .type("AUTH")
                .ruleSetId(exampleAwsMailmanagerRuleSet.id())
                .trafficPolicyId(exampleAwsMailmanagerTrafficPolicy.id())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:mailmanager:IngressPoint
        properties:
          ingressPointConfiguration:
            smtpPasswordWo: ${smtpPassword}
            smtpPasswordWoVersion: 1
          name: example
          type: AUTH
          ruleSetId: ${exampleAwsMailmanagerRuleSet.id}
          trafficPolicyId: ${exampleAwsMailmanagerTrafficPolicy.id}
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_mailmanager_ingresspoint" "example" {
      ingress_point_configuration = {
        smtp_password_wo         = smtpPassword
        smtp_password_wo_version = 1
      }
      name              = "example"
      type              = "AUTH"
      rule_set_id       = exampleAwsMailmanagerRuleSet.id
      traffic_policy_id = exampleAwsMailmanagerTrafficPolicy.id
    }
    

    Private Network Configuration

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.mailmanager.IngressPoint("example", {
        networkConfiguration: {
            privateNetworkConfiguration: {
                vpcEndpointId: exampleAwsVpcEndpoint.id,
            },
        },
        name: "example",
        type: "OPEN",
        ruleSetId: exampleAwsMailmanagerRuleSet.id,
        trafficPolicyId: exampleAwsMailmanagerTrafficPolicy.id,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.mailmanager.IngressPoint("example",
        network_configuration={
            "private_network_configuration": {
                "vpc_endpoint_id": example_aws_vpc_endpoint["id"],
            },
        },
        name="example",
        type="OPEN",
        rule_set_id=example_aws_mailmanager_rule_set["id"],
        traffic_policy_id=example_aws_mailmanager_traffic_policy["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/mailmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mailmanager.NewIngressPoint(ctx, "example", &mailmanager.IngressPointArgs{
    			NetworkConfiguration: &mailmanager.IngressPointNetworkConfigurationArgs{
    				PrivateNetworkConfiguration: &mailmanager.IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs{
    					VpcEndpointId: pulumi.Any(exampleAwsVpcEndpoint.Id),
    				},
    			},
    			Name:            pulumi.String("example"),
    			Type:            pulumi.String("OPEN"),
    			RuleSetId:       pulumi.Any(exampleAwsMailmanagerRuleSet.Id),
    			TrafficPolicyId: pulumi.Any(exampleAwsMailmanagerTrafficPolicy.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.MailManager.IngressPoint("example", new()
        {
            NetworkConfiguration = new Aws.MailManager.Inputs.IngressPointNetworkConfigurationArgs
            {
                PrivateNetworkConfiguration = new Aws.MailManager.Inputs.IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs
                {
                    VpcEndpointId = exampleAwsVpcEndpoint.Id,
                },
            },
            Name = "example",
            Type = "OPEN",
            RuleSetId = exampleAwsMailmanagerRuleSet.Id,
            TrafficPolicyId = exampleAwsMailmanagerTrafficPolicy.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.mailmanager.IngressPoint;
    import com.pulumi.aws.mailmanager.IngressPointArgs;
    import com.pulumi.aws.mailmanager.inputs.IngressPointNetworkConfigurationArgs;
    import com.pulumi.aws.mailmanager.inputs.IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 IngressPoint("example", IngressPointArgs.builder()
                .networkConfiguration(IngressPointNetworkConfigurationArgs.builder()
                    .privateNetworkConfiguration(IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs.builder()
                        .vpcEndpointId(exampleAwsVpcEndpoint.id())
                        .build())
                    .build())
                .name("example")
                .type("OPEN")
                .ruleSetId(exampleAwsMailmanagerRuleSet.id())
                .trafficPolicyId(exampleAwsMailmanagerTrafficPolicy.id())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:mailmanager:IngressPoint
        properties:
          networkConfiguration:
            privateNetworkConfiguration:
              vpcEndpointId: ${exampleAwsVpcEndpoint.id}
          name: example
          type: OPEN
          ruleSetId: ${exampleAwsMailmanagerRuleSet.id}
          trafficPolicyId: ${exampleAwsMailmanagerTrafficPolicy.id}
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_mailmanager_ingresspoint" "example" {
      network_configuration = {
        private_network_configuration = {
          vpc_endpoint_id = exampleAwsVpcEndpoint.id
        }
      }
      name              = "example"
      type              = "OPEN"
      rule_set_id       = exampleAwsMailmanagerRuleSet.id
      traffic_policy_id = exampleAwsMailmanagerTrafficPolicy.id
    }
    

    Create IngressPoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IngressPoint(name: string, args: IngressPointArgs, opts?: CustomResourceOptions);
    @overload
    def IngressPoint(resource_name: str,
                     args: IngressPointArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def IngressPoint(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     rule_set_id: Optional[str] = None,
                     traffic_policy_id: Optional[str] = None,
                     type: Optional[str] = None,
                     ingress_point_configuration: Optional[IngressPointIngressPointConfigurationArgs] = None,
                     name: Optional[str] = None,
                     network_configuration: Optional[IngressPointNetworkConfigurationArgs] = None,
                     region: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     timeouts: Optional[IngressPointTimeoutsArgs] = None,
                     tls_policy: Optional[str] = None)
    func NewIngressPoint(ctx *Context, name string, args IngressPointArgs, opts ...ResourceOption) (*IngressPoint, error)
    public IngressPoint(string name, IngressPointArgs args, CustomResourceOptions? opts = null)
    public IngressPoint(String name, IngressPointArgs args)
    public IngressPoint(String name, IngressPointArgs args, CustomResourceOptions options)
    
    type: aws:mailmanager:IngressPoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_mailmanager_ingress_point" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IngressPointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IngressPointArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IngressPointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IngressPointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IngressPointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var ingressPointResource = new Aws.MailManager.IngressPoint("ingressPointResource", new()
    {
        RuleSetId = "string",
        TrafficPolicyId = "string",
        Type = "string",
        IngressPointConfiguration = new Aws.MailManager.Inputs.IngressPointIngressPointConfigurationArgs
        {
            SecretArn = "string",
            SmtpPasswordWo = "string",
            SmtpPasswordWoVersion = 0,
            TlsAuthConfiguration = new Aws.MailManager.Inputs.IngressPointIngressPointConfigurationTlsAuthConfigurationArgs
            {
                TrustStore = new Aws.MailManager.Inputs.IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStoreArgs
                {
                    CaContent = "string",
                    CrlContent = "string",
                    KmsKeyArn = "string",
                },
            },
        },
        Name = "string",
        NetworkConfiguration = new Aws.MailManager.Inputs.IngressPointNetworkConfigurationArgs
        {
            PrivateNetworkConfiguration = new Aws.MailManager.Inputs.IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs
            {
                VpcEndpointId = "string",
            },
            PublicNetworkConfiguration = new Aws.MailManager.Inputs.IngressPointNetworkConfigurationPublicNetworkConfigurationArgs
            {
                IpType = "string",
            },
        },
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.MailManager.Inputs.IngressPointTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        TlsPolicy = "string",
    });
    
    example, err := mailmanager.NewIngressPoint(ctx, "ingressPointResource", &mailmanager.IngressPointArgs{
    	RuleSetId:       pulumi.String("string"),
    	TrafficPolicyId: pulumi.String("string"),
    	Type:            pulumi.String("string"),
    	IngressPointConfiguration: &mailmanager.IngressPointIngressPointConfigurationArgs{
    		SecretArn:             pulumi.String("string"),
    		SmtpPasswordWo:        pulumi.String("string"),
    		SmtpPasswordWoVersion: pulumi.Int(0),
    		TlsAuthConfiguration: &mailmanager.IngressPointIngressPointConfigurationTlsAuthConfigurationArgs{
    			TrustStore: &mailmanager.IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStoreArgs{
    				CaContent:  pulumi.String("string"),
    				CrlContent: pulumi.String("string"),
    				KmsKeyArn:  pulumi.String("string"),
    			},
    		},
    	},
    	Name: pulumi.String("string"),
    	NetworkConfiguration: &mailmanager.IngressPointNetworkConfigurationArgs{
    		PrivateNetworkConfiguration: &mailmanager.IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs{
    			VpcEndpointId: pulumi.String("string"),
    		},
    		PublicNetworkConfiguration: &mailmanager.IngressPointNetworkConfigurationPublicNetworkConfigurationArgs{
    			IpType: pulumi.String("string"),
    		},
    	},
    	Region: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &mailmanager.IngressPointTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	TlsPolicy: pulumi.String("string"),
    })
    
    resource "aws_mailmanager_ingress_point" "ingressPointResource" {
      lifecycle {
        create_before_destroy = true
      }
      rule_set_id       = "string"
      traffic_policy_id = "string"
      type              = "string"
      ingress_point_configuration = {
        secret_arn               = "string"
        smtp_password_wo         = "string"
        smtp_password_wo_version = 0
        tls_auth_configuration = {
          trust_store = {
            ca_content  = "string"
            crl_content = "string"
            kms_key_arn = "string"
          }
        }
      }
      name = "string"
      network_configuration = {
        private_network_configuration = {
          vpc_endpoint_id = "string"
        }
        public_network_configuration = {
          ip_type = "string"
        }
      }
      region = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
        update = "string"
      }
      tls_policy = "string"
    }
    
    var ingressPointResource = new IngressPoint("ingressPointResource", IngressPointArgs.builder()
        .ruleSetId("string")
        .trafficPolicyId("string")
        .type("string")
        .ingressPointConfiguration(IngressPointIngressPointConfigurationArgs.builder()
            .secretArn("string")
            .smtpPasswordWo("string")
            .smtpPasswordWoVersion(0)
            .tlsAuthConfiguration(IngressPointIngressPointConfigurationTlsAuthConfigurationArgs.builder()
                .trustStore(IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStoreArgs.builder()
                    .caContent("string")
                    .crlContent("string")
                    .kmsKeyArn("string")
                    .build())
                .build())
            .build())
        .name("string")
        .networkConfiguration(IngressPointNetworkConfigurationArgs.builder()
            .privateNetworkConfiguration(IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs.builder()
                .vpcEndpointId("string")
                .build())
            .publicNetworkConfiguration(IngressPointNetworkConfigurationPublicNetworkConfigurationArgs.builder()
                .ipType("string")
                .build())
            .build())
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(IngressPointTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .tlsPolicy("string")
        .build());
    
    ingress_point_resource = aws.mailmanager.IngressPoint("ingressPointResource",
        rule_set_id="string",
        traffic_policy_id="string",
        type="string",
        ingress_point_configuration={
            "secret_arn": "string",
            "smtp_password_wo": "string",
            "smtp_password_wo_version": 0,
            "tls_auth_configuration": {
                "trust_store": {
                    "ca_content": "string",
                    "crl_content": "string",
                    "kms_key_arn": "string",
                },
            },
        },
        name="string",
        network_configuration={
            "private_network_configuration": {
                "vpc_endpoint_id": "string",
            },
            "public_network_configuration": {
                "ip_type": "string",
            },
        },
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        tls_policy="string")
    
    const ingressPointResource = new aws.mailmanager.IngressPoint("ingressPointResource", {
        ruleSetId: "string",
        trafficPolicyId: "string",
        type: "string",
        ingressPointConfiguration: {
            secretArn: "string",
            smtpPasswordWo: "string",
            smtpPasswordWoVersion: 0,
            tlsAuthConfiguration: {
                trustStore: {
                    caContent: "string",
                    crlContent: "string",
                    kmsKeyArn: "string",
                },
            },
        },
        name: "string",
        networkConfiguration: {
            privateNetworkConfiguration: {
                vpcEndpointId: "string",
            },
            publicNetworkConfiguration: {
                ipType: "string",
            },
        },
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        tlsPolicy: "string",
    });
    
    type: aws:mailmanager:IngressPoint
    properties:
        ingressPointConfiguration:
            secretArn: string
            smtpPasswordWo: string
            smtpPasswordWoVersion: 0
            tlsAuthConfiguration:
                trustStore:
                    caContent: string
                    crlContent: string
                    kmsKeyArn: string
        name: string
        networkConfiguration:
            privateNetworkConfiguration:
                vpcEndpointId: string
            publicNetworkConfiguration:
                ipType: string
        region: string
        ruleSetId: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
        tlsPolicy: string
        trafficPolicyId: string
        type: string
    

    IngressPoint Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The IngressPoint resource accepts the following input properties:

    RuleSetId string
    Identifier of the rule set applied to the ingress point.
    TrafficPolicyId string
    Identifier of the traffic policy applied to the ingress point.
    Type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    IngressPointConfiguration IngressPointIngressPointConfiguration
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    Name string
    Name of the ingress point.
    NetworkConfiguration IngressPointNetworkConfiguration
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    Region string
    Region where this resource is managed.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IngressPointTimeouts
    TlsPolicy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    RuleSetId string
    Identifier of the rule set applied to the ingress point.
    TrafficPolicyId string
    Identifier of the traffic policy applied to the ingress point.
    Type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    IngressPointConfiguration IngressPointIngressPointConfigurationArgs
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    Name string
    Name of the ingress point.
    NetworkConfiguration IngressPointNetworkConfigurationArgs
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    Region string
    Region where this resource is managed.
    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IngressPointTimeoutsArgs
    TlsPolicy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    rule_set_id string
    Identifier of the rule set applied to the ingress point.
    traffic_policy_id string
    Identifier of the traffic policy applied to the ingress point.
    type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    ingress_point_configuration object
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    name string
    Name of the ingress point.
    network_configuration object
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region string
    Region where this resource is managed.
    tags map(string)
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts object
    tls_policy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    ruleSetId String
    Identifier of the rule set applied to the ingress point.
    trafficPolicyId String
    Identifier of the traffic policy applied to the ingress point.
    type String

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    ingressPointConfiguration IngressPointIngressPointConfiguration
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    name String
    Name of the ingress point.
    networkConfiguration IngressPointNetworkConfiguration
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region String
    Region where this resource is managed.
    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngressPointTimeouts
    tlsPolicy String
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    ruleSetId string
    Identifier of the rule set applied to the ingress point.
    trafficPolicyId string
    Identifier of the traffic policy applied to the ingress point.
    type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    ingressPointConfiguration IngressPointIngressPointConfiguration
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    name string
    Name of the ingress point.
    networkConfiguration IngressPointNetworkConfiguration
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region string
    Region where this resource is managed.
    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngressPointTimeouts
    tlsPolicy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    rule_set_id str
    Identifier of the rule set applied to the ingress point.
    traffic_policy_id str
    Identifier of the traffic policy applied to the ingress point.
    type str

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    ingress_point_configuration IngressPointIngressPointConfigurationArgs
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    name str
    Name of the ingress point.
    network_configuration IngressPointNetworkConfigurationArgs
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region str
    Region where this resource is managed.
    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngressPointTimeoutsArgs
    tls_policy str
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    ruleSetId String
    Identifier of the rule set applied to the ingress point.
    trafficPolicyId String
    Identifier of the traffic policy applied to the ingress point.
    type String

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    ingressPointConfiguration Property Map
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    name String
    Name of the ingress point.
    networkConfiguration Property Map
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region String
    Region where this resource is managed.
    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map
    tlsPolicy String
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.

    Outputs

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

    ARecord string
    DNS A record that identifies your ingress endpoint for email clients.
    Arn string
    ARN of the Ingress Point.
    CreatedTimestamp string
    Timestamp of when the ingress point was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdatedTimestamp string
    Timestamp of when the ingress point was last updated.
    Status string
    Status of the ingress point.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    ARecord string
    DNS A record that identifies your ingress endpoint for email clients.
    Arn string
    ARN of the Ingress Point.
    CreatedTimestamp string
    Timestamp of when the ingress point was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdatedTimestamp string
    Timestamp of when the ingress point was last updated.
    Status string
    Status of the ingress point.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    a_record string
    DNS A record that identifies your ingress endpoint for email clients.
    arn string
    ARN of the Ingress Point.
    created_timestamp string
    Timestamp of when the ingress point was created.
    id string
    The provider-assigned unique ID for this managed resource.
    last_updated_timestamp string
    Timestamp of when the ingress point was last updated.
    status string
    Status of the ingress point.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    aRecord String
    DNS A record that identifies your ingress endpoint for email clients.
    arn String
    ARN of the Ingress Point.
    createdTimestamp String
    Timestamp of when the ingress point was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdatedTimestamp String
    Timestamp of when the ingress point was last updated.
    status String
    Status of the ingress point.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    aRecord string
    DNS A record that identifies your ingress endpoint for email clients.
    arn string
    ARN of the Ingress Point.
    createdTimestamp string
    Timestamp of when the ingress point was created.
    id string
    The provider-assigned unique ID for this managed resource.
    lastUpdatedTimestamp string
    Timestamp of when the ingress point was last updated.
    status string
    Status of the ingress point.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    a_record str
    DNS A record that identifies your ingress endpoint for email clients.
    arn str
    ARN of the Ingress Point.
    created_timestamp str
    Timestamp of when the ingress point was created.
    id str
    The provider-assigned unique ID for this managed resource.
    last_updated_timestamp str
    Timestamp of when the ingress point was last updated.
    status str
    Status of the ingress point.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    aRecord String
    DNS A record that identifies your ingress endpoint for email clients.
    arn String
    ARN of the Ingress Point.
    createdTimestamp String
    Timestamp of when the ingress point was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdatedTimestamp String
    Timestamp of when the ingress point was last updated.
    status String
    Status of the ingress point.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

    Look up Existing IngressPoint Resource

    Get an existing IngressPoint 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?: IngressPointState, opts?: CustomResourceOptions): IngressPoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            a_record: Optional[str] = None,
            arn: Optional[str] = None,
            created_timestamp: Optional[str] = None,
            ingress_point_configuration: Optional[IngressPointIngressPointConfigurationArgs] = None,
            last_updated_timestamp: Optional[str] = None,
            name: Optional[str] = None,
            network_configuration: Optional[IngressPointNetworkConfigurationArgs] = None,
            region: Optional[str] = None,
            rule_set_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[IngressPointTimeoutsArgs] = None,
            tls_policy: Optional[str] = None,
            traffic_policy_id: Optional[str] = None,
            type: Optional[str] = None) -> IngressPoint
    func GetIngressPoint(ctx *Context, name string, id IDInput, state *IngressPointState, opts ...ResourceOption) (*IngressPoint, error)
    public static IngressPoint Get(string name, Input<string> id, IngressPointState? state, CustomResourceOptions? opts = null)
    public static IngressPoint get(String name, Output<String> id, IngressPointState state, CustomResourceOptions options)
    resources:  _:    type: aws:mailmanager:IngressPoint    get:      id: ${id}
    import {
      to = aws_mailmanager_ingress_point.example
      id = "${id}"
    }
    
    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.
    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:
    ARecord string
    DNS A record that identifies your ingress endpoint for email clients.
    Arn string
    ARN of the Ingress Point.
    CreatedTimestamp string
    Timestamp of when the ingress point was created.
    IngressPointConfiguration IngressPointIngressPointConfiguration
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    LastUpdatedTimestamp string
    Timestamp of when the ingress point was last updated.
    Name string
    Name of the ingress point.
    NetworkConfiguration IngressPointNetworkConfiguration
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    Region string
    Region where this resource is managed.
    RuleSetId string
    Identifier of the rule set applied to the ingress point.
    Status string
    Status of the ingress point.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Timeouts IngressPointTimeouts
    TlsPolicy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    TrafficPolicyId string
    Identifier of the traffic policy applied to the ingress point.
    Type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    ARecord string
    DNS A record that identifies your ingress endpoint for email clients.
    Arn string
    ARN of the Ingress Point.
    CreatedTimestamp string
    Timestamp of when the ingress point was created.
    IngressPointConfiguration IngressPointIngressPointConfigurationArgs
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    LastUpdatedTimestamp string
    Timestamp of when the ingress point was last updated.
    Name string
    Name of the ingress point.
    NetworkConfiguration IngressPointNetworkConfigurationArgs
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    Region string
    Region where this resource is managed.
    RuleSetId string
    Identifier of the rule set applied to the ingress point.
    Status string
    Status of the ingress point.
    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Timeouts IngressPointTimeoutsArgs
    TlsPolicy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    TrafficPolicyId string
    Identifier of the traffic policy applied to the ingress point.
    Type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    a_record string
    DNS A record that identifies your ingress endpoint for email clients.
    arn string
    ARN of the Ingress Point.
    created_timestamp string
    Timestamp of when the ingress point was created.
    ingress_point_configuration object
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    last_updated_timestamp string
    Timestamp of when the ingress point was last updated.
    name string
    Name of the ingress point.
    network_configuration object
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region string
    Region where this resource is managed.
    rule_set_id string
    Identifier of the rule set applied to the ingress point.
    status string
    Status of the ingress point.
    tags map(string)
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts object
    tls_policy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    traffic_policy_id string
    Identifier of the traffic policy applied to the ingress point.
    type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    aRecord String
    DNS A record that identifies your ingress endpoint for email clients.
    arn String
    ARN of the Ingress Point.
    createdTimestamp String
    Timestamp of when the ingress point was created.
    ingressPointConfiguration IngressPointIngressPointConfiguration
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    lastUpdatedTimestamp String
    Timestamp of when the ingress point was last updated.
    name String
    Name of the ingress point.
    networkConfiguration IngressPointNetworkConfiguration
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region String
    Region where this resource is managed.
    ruleSetId String
    Identifier of the rule set applied to the ingress point.
    status String
    Status of the ingress point.
    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts IngressPointTimeouts
    tlsPolicy String
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    trafficPolicyId String
    Identifier of the traffic policy applied to the ingress point.
    type String

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    aRecord string
    DNS A record that identifies your ingress endpoint for email clients.
    arn string
    ARN of the Ingress Point.
    createdTimestamp string
    Timestamp of when the ingress point was created.
    ingressPointConfiguration IngressPointIngressPointConfiguration
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    lastUpdatedTimestamp string
    Timestamp of when the ingress point was last updated.
    name string
    Name of the ingress point.
    networkConfiguration IngressPointNetworkConfiguration
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region string
    Region where this resource is managed.
    ruleSetId string
    Identifier of the rule set applied to the ingress point.
    status string
    Status of the ingress point.
    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts IngressPointTimeouts
    tlsPolicy string
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    trafficPolicyId string
    Identifier of the traffic policy applied to the ingress point.
    type string

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    a_record str
    DNS A record that identifies your ingress endpoint for email clients.
    arn str
    ARN of the Ingress Point.
    created_timestamp str
    Timestamp of when the ingress point was created.
    ingress_point_configuration IngressPointIngressPointConfigurationArgs
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    last_updated_timestamp str
    Timestamp of when the ingress point was last updated.
    name str
    Name of the ingress point.
    network_configuration IngressPointNetworkConfigurationArgs
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region str
    Region where this resource is managed.
    rule_set_id str
    Identifier of the rule set applied to the ingress point.
    status str
    Status of the ingress point.
    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts IngressPointTimeoutsArgs
    tls_policy str
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    traffic_policy_id str
    Identifier of the traffic policy applied to the ingress point.
    type str

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    aRecord String
    DNS A record that identifies your ingress endpoint for email clients.
    arn String
    ARN of the Ingress Point.
    createdTimestamp String
    Timestamp of when the ingress point was created.
    ingressPointConfiguration Property Map
    Configuration used to authenticate with the ingress point. See ingressPointConfiguration Block for details.
    lastUpdatedTimestamp String
    Timestamp of when the ingress point was last updated.
    name String
    Name of the ingress point.
    networkConfiguration Property Map
    Network configuration for the ingress point. See networkConfiguration Block for details. Changing this value forces a new resource.
    region String
    Region where this resource is managed.
    ruleSetId String
    Identifier of the rule set applied to the ingress point.
    status String
    Status of the ingress point.
    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts Property Map
    tlsPolicy String
    TLS policy for the ingress point. Valid values are REQUIRED, OPTIONAL, and FIPS.
    trafficPolicyId String
    Identifier of the traffic policy applied to the ingress point.
    type String

    Type of the ingress point. Valid values are OPEN, AUTH, and MTLS. Changing this value forces a new resource.

    The following arguments are optional:

    Supporting Types

    IngressPointIngressPointConfiguration, IngressPointIngressPointConfigurationArgs

    SecretArn string
    ARN of the secret in AWS Secrets Manager that holds the SMTP password, used for AUTH ingress points.
    SmtpPasswordWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. SMTP password used for AUTH ingress points. This argument is not stored in state. Requires smtpPasswordWoVersion to be set. See Write-Only Arguments for more information.
    SmtpPasswordWoVersion int
    Version number for smtpPasswordWo. Increment this value to trigger a password update. Required when using smtpPasswordWo.
    TlsAuthConfiguration IngressPointIngressPointConfigurationTlsAuthConfiguration
    Configuration used to authenticate with MTLS ingress points. See tlsAuthConfiguration Block for details.
    SecretArn string
    ARN of the secret in AWS Secrets Manager that holds the SMTP password, used for AUTH ingress points.
    SmtpPasswordWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. SMTP password used for AUTH ingress points. This argument is not stored in state. Requires smtpPasswordWoVersion to be set. See Write-Only Arguments for more information.
    SmtpPasswordWoVersion int
    Version number for smtpPasswordWo. Increment this value to trigger a password update. Required when using smtpPasswordWo.
    TlsAuthConfiguration IngressPointIngressPointConfigurationTlsAuthConfiguration
    Configuration used to authenticate with MTLS ingress points. See tlsAuthConfiguration Block for details.
    secret_arn string
    ARN of the secret in AWS Secrets Manager that holds the SMTP password, used for AUTH ingress points.
    smtp_password_wo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. SMTP password used for AUTH ingress points. This argument is not stored in state. Requires smtpPasswordWoVersion to be set. See Write-Only Arguments for more information.
    smtp_password_wo_version number
    Version number for smtpPasswordWo. Increment this value to trigger a password update. Required when using smtpPasswordWo.
    tls_auth_configuration object
    Configuration used to authenticate with MTLS ingress points. See tlsAuthConfiguration Block for details.
    secretArn String
    ARN of the secret in AWS Secrets Manager that holds the SMTP password, used for AUTH ingress points.
    smtpPasswordWo String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. SMTP password used for AUTH ingress points. This argument is not stored in state. Requires smtpPasswordWoVersion to be set. See Write-Only Arguments for more information.
    smtpPasswordWoVersion Integer
    Version number for smtpPasswordWo. Increment this value to trigger a password update. Required when using smtpPasswordWo.
    tlsAuthConfiguration IngressPointIngressPointConfigurationTlsAuthConfiguration
    Configuration used to authenticate with MTLS ingress points. See tlsAuthConfiguration Block for details.
    secretArn string
    ARN of the secret in AWS Secrets Manager that holds the SMTP password, used for AUTH ingress points.
    smtpPasswordWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. SMTP password used for AUTH ingress points. This argument is not stored in state. Requires smtpPasswordWoVersion to be set. See Write-Only Arguments for more information.
    smtpPasswordWoVersion number
    Version number for smtpPasswordWo. Increment this value to trigger a password update. Required when using smtpPasswordWo.
    tlsAuthConfiguration IngressPointIngressPointConfigurationTlsAuthConfiguration
    Configuration used to authenticate with MTLS ingress points. See tlsAuthConfiguration Block for details.
    secret_arn str
    ARN of the secret in AWS Secrets Manager that holds the SMTP password, used for AUTH ingress points.
    smtp_password_wo str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. SMTP password used for AUTH ingress points. This argument is not stored in state. Requires smtpPasswordWoVersion to be set. See Write-Only Arguments for more information.
    smtp_password_wo_version int
    Version number for smtpPasswordWo. Increment this value to trigger a password update. Required when using smtpPasswordWo.
    tls_auth_configuration IngressPointIngressPointConfigurationTlsAuthConfiguration
    Configuration used to authenticate with MTLS ingress points. See tlsAuthConfiguration Block for details.
    secretArn String
    ARN of the secret in AWS Secrets Manager that holds the SMTP password, used for AUTH ingress points.
    smtpPasswordWo String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. SMTP password used for AUTH ingress points. This argument is not stored in state. Requires smtpPasswordWoVersion to be set. See Write-Only Arguments for more information.
    smtpPasswordWoVersion Number
    Version number for smtpPasswordWo. Increment this value to trigger a password update. Required when using smtpPasswordWo.
    tlsAuthConfiguration Property Map
    Configuration used to authenticate with MTLS ingress points. See tlsAuthConfiguration Block for details.

    IngressPointIngressPointConfigurationTlsAuthConfiguration, IngressPointIngressPointConfigurationTlsAuthConfigurationArgs

    TrustStore IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStore
    Trust store used to validate client certificates. See trustStore Block for details.
    TrustStore IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStore
    Trust store used to validate client certificates. See trustStore Block for details.
    trust_store object
    Trust store used to validate client certificates. See trustStore Block for details.
    trustStore IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStore
    Trust store used to validate client certificates. See trustStore Block for details.
    trustStore IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStore
    Trust store used to validate client certificates. See trustStore Block for details.
    trust_store IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStore
    Trust store used to validate client certificates. See trustStore Block for details.
    trustStore Property Map
    Trust store used to validate client certificates. See trustStore Block for details.

    IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStore, IngressPointIngressPointConfigurationTlsAuthConfigurationTrustStoreArgs

    CaContent string
    PEM-encoded certificate authority (CA) content used to validate client certificates.
    CrlContent string
    PEM-encoded certificate revocation list (CRL) content used to check whether client certificates have been revoked.
    KmsKeyArn string
    ARN of the AWS KMS key used to decrypt the CRL content.
    CaContent string
    PEM-encoded certificate authority (CA) content used to validate client certificates.
    CrlContent string
    PEM-encoded certificate revocation list (CRL) content used to check whether client certificates have been revoked.
    KmsKeyArn string
    ARN of the AWS KMS key used to decrypt the CRL content.
    ca_content string
    PEM-encoded certificate authority (CA) content used to validate client certificates.
    crl_content string
    PEM-encoded certificate revocation list (CRL) content used to check whether client certificates have been revoked.
    kms_key_arn string
    ARN of the AWS KMS key used to decrypt the CRL content.
    caContent String
    PEM-encoded certificate authority (CA) content used to validate client certificates.
    crlContent String
    PEM-encoded certificate revocation list (CRL) content used to check whether client certificates have been revoked.
    kmsKeyArn String
    ARN of the AWS KMS key used to decrypt the CRL content.
    caContent string
    PEM-encoded certificate authority (CA) content used to validate client certificates.
    crlContent string
    PEM-encoded certificate revocation list (CRL) content used to check whether client certificates have been revoked.
    kmsKeyArn string
    ARN of the AWS KMS key used to decrypt the CRL content.
    ca_content str
    PEM-encoded certificate authority (CA) content used to validate client certificates.
    crl_content str
    PEM-encoded certificate revocation list (CRL) content used to check whether client certificates have been revoked.
    kms_key_arn str
    ARN of the AWS KMS key used to decrypt the CRL content.
    caContent String
    PEM-encoded certificate authority (CA) content used to validate client certificates.
    crlContent String
    PEM-encoded certificate revocation list (CRL) content used to check whether client certificates have been revoked.
    kmsKeyArn String
    ARN of the AWS KMS key used to decrypt the CRL content.

    IngressPointNetworkConfiguration, IngressPointNetworkConfigurationArgs

    PrivateNetworkConfiguration IngressPointNetworkConfigurationPrivateNetworkConfiguration
    Configuration for a private ingress point that uses a VPC endpoint. See privateNetworkConfiguration Block for details.
    PublicNetworkConfiguration IngressPointNetworkConfigurationPublicNetworkConfiguration
    Configuration for a public ingress point. See publicNetworkConfiguration Block for details.
    PrivateNetworkConfiguration IngressPointNetworkConfigurationPrivateNetworkConfiguration
    Configuration for a private ingress point that uses a VPC endpoint. See privateNetworkConfiguration Block for details.
    PublicNetworkConfiguration IngressPointNetworkConfigurationPublicNetworkConfiguration
    Configuration for a public ingress point. See publicNetworkConfiguration Block for details.
    private_network_configuration object
    Configuration for a private ingress point that uses a VPC endpoint. See privateNetworkConfiguration Block for details.
    public_network_configuration object
    Configuration for a public ingress point. See publicNetworkConfiguration Block for details.
    privateNetworkConfiguration IngressPointNetworkConfigurationPrivateNetworkConfiguration
    Configuration for a private ingress point that uses a VPC endpoint. See privateNetworkConfiguration Block for details.
    publicNetworkConfiguration IngressPointNetworkConfigurationPublicNetworkConfiguration
    Configuration for a public ingress point. See publicNetworkConfiguration Block for details.
    privateNetworkConfiguration IngressPointNetworkConfigurationPrivateNetworkConfiguration
    Configuration for a private ingress point that uses a VPC endpoint. See privateNetworkConfiguration Block for details.
    publicNetworkConfiguration IngressPointNetworkConfigurationPublicNetworkConfiguration
    Configuration for a public ingress point. See publicNetworkConfiguration Block for details.
    private_network_configuration IngressPointNetworkConfigurationPrivateNetworkConfiguration
    Configuration for a private ingress point that uses a VPC endpoint. See privateNetworkConfiguration Block for details.
    public_network_configuration IngressPointNetworkConfigurationPublicNetworkConfiguration
    Configuration for a public ingress point. See publicNetworkConfiguration Block for details.
    privateNetworkConfiguration Property Map
    Configuration for a private ingress point that uses a VPC endpoint. See privateNetworkConfiguration Block for details.
    publicNetworkConfiguration Property Map
    Configuration for a public ingress point. See publicNetworkConfiguration Block for details.

    IngressPointNetworkConfigurationPrivateNetworkConfiguration, IngressPointNetworkConfigurationPrivateNetworkConfigurationArgs

    VpcEndpointId string
    Identifier of the VPC endpoint to associate with the ingress point.
    VpcEndpointId string
    Identifier of the VPC endpoint to associate with the ingress point.
    vpc_endpoint_id string
    Identifier of the VPC endpoint to associate with the ingress point.
    vpcEndpointId String
    Identifier of the VPC endpoint to associate with the ingress point.
    vpcEndpointId string
    Identifier of the VPC endpoint to associate with the ingress point.
    vpc_endpoint_id str
    Identifier of the VPC endpoint to associate with the ingress point.
    vpcEndpointId String
    Identifier of the VPC endpoint to associate with the ingress point.

    IngressPointNetworkConfigurationPublicNetworkConfiguration, IngressPointNetworkConfigurationPublicNetworkConfigurationArgs

    IpType string
    IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
    IpType string
    IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
    ip_type string
    IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
    ipType String
    IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
    ipType string
    IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
    ip_type str
    IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
    ipType String
    IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.

    IngressPointTimeouts, IngressPointTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Identity Schema

    Required

    • id (String) Identifier of the Ingress Point.

    Optional

    • accountId (String) AWS Account where this resource is managed.
    • region (String) Region where this resource is managed.

    Using pulumi import, import SES Mail Manager Ingress Point using the id. For example:

    $ pulumi import aws:mailmanager/ingressPoint:IngressPoint example ingress_point-id-12345678
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo aws logo
    Viewing docs for AWS v7.46.0
    published on Thursday, Sep 10, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial