import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of AWS::SES::MailManagerIngressPoint Resource Type */ export declare class MailManagerIngressPoint extends pulumi.CustomResource { /** * Get an existing MailManagerIngressPoint resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): MailManagerIngressPoint; /** * Returns true if the given object is an instance of MailManagerIngressPoint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is MailManagerIngressPoint; /** * The DNS A Record that identifies your ingress endpoint. Configure your DNS Mail Exchange (MX) record with this value to route emails to Mail Manager. */ readonly aRecord: pulumi.Output; /** * The Amazon Resource Name (ARN) of the ingress endpoint resource. */ readonly ingressPointArn: pulumi.Output; /** * The configuration of the ingress endpoint resource. */ readonly ingressPointConfiguration: pulumi.Output; /** * The identifier of the ingress endpoint resource. */ readonly ingressPointId: pulumi.Output; /** * A user friendly name for an ingress endpoint resource. */ readonly ingressPointName: pulumi.Output; /** * The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource. */ readonly networkConfiguration: pulumi.Output; /** * The identifier of an existing rule set that you attach to an ingress endpoint resource. */ readonly ruleSetId: pulumi.Output; /** * The status of the ingress endpoint resource. */ readonly status: pulumi.Output; /** * The update status of an ingress endpoint. */ readonly statusToUpdate: pulumi.Output; /** * The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }. */ readonly tags: pulumi.Output; readonly tlsPolicy: pulumi.Output; /** * The identifier of an existing traffic policy that you attach to an ingress endpoint resource. */ readonly trafficPolicyId: pulumi.Output; /** * The type of the ingress endpoint to create. */ readonly type: pulumi.Output; /** * Create a MailManagerIngressPoint resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: MailManagerIngressPointArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a MailManagerIngressPoint resource. */ export interface MailManagerIngressPointArgs { /** * The configuration of the ingress endpoint resource. */ ingressPointConfiguration?: pulumi.Input; /** * A user friendly name for an ingress endpoint resource. */ ingressPointName?: pulumi.Input; /** * The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource. */ networkConfiguration?: pulumi.Input; /** * The identifier of an existing rule set that you attach to an ingress endpoint resource. */ ruleSetId: pulumi.Input; /** * The update status of an ingress endpoint. */ statusToUpdate?: pulumi.Input; /** * The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }. */ tags?: pulumi.Input[]>; tlsPolicy?: pulumi.Input; /** * The identifier of an existing traffic policy that you attach to an ingress endpoint resource. */ trafficPolicyId: pulumi.Input; /** * The type of the ingress endpoint to create. */ type: pulumi.Input; }