import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::ApiGateway::DomainNameV2. */ export declare class DomainNameV2 extends pulumi.CustomResource { /** * Get an existing DomainNameV2 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): DomainNameV2; /** * Returns true if the given object is an instance of DomainNameV2. 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 DomainNameV2; /** * The reference to an AWS -managed certificate that will be used by the private endpoint for this domain name. AWS Certificate Manager is the only supported source. */ readonly certificateArn: pulumi.Output; /** * Represents a custom domain name as a user-friendly host name of an API (RestApi). */ readonly domainName: pulumi.Output; /** * The amazon resource name (ARN) of the domain name resource. */ readonly domainNameArn: pulumi.Output; /** * The domain name ID. */ readonly domainNameId: pulumi.Output; /** * The endpoint access mode for your DomainName. */ readonly endpointAccessMode: pulumi.Output; /** * The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has and the IP address types that can invoke it. */ readonly endpointConfiguration: pulumi.Output; /** * A stringified JSON policy document that applies to the `execute-api` service for this DomainName regardless of the caller and Method configuration. You can use `Fn::ToJsonString` to enter your `policy` . For more information, see [Fn::ToJsonString](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-ToJsonString.html) . * * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::ApiGateway::DomainNameV2` for more information about the expected schema for this property. */ readonly policy: pulumi.Output; /** * The valid routing modes are [BASE_PATH_MAPPING_ONLY], [ROUTING_RULE_THEN_BASE_PATH_MAPPING] and [ROUTING_RULE_ONLY]. All other inputs are invalid. */ readonly routingMode: pulumi.Output; /** * The Transport Layer Security (TLS) version + cipher suite for this DomainName. */ readonly securityPolicy: pulumi.Output; /** * The collection of tags. Each tag element is associated with a given resource. */ readonly tags: pulumi.Output; /** * Create a DomainNameV2 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?: DomainNameV2Args, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DomainNameV2 resource. */ export interface DomainNameV2Args { /** * The reference to an AWS -managed certificate that will be used by the private endpoint for this domain name. AWS Certificate Manager is the only supported source. */ certificateArn?: pulumi.Input; /** * Represents a custom domain name as a user-friendly host name of an API (RestApi). */ domainName?: pulumi.Input; /** * The endpoint access mode for your DomainName. */ endpointAccessMode?: pulumi.Input; /** * The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has and the IP address types that can invoke it. */ endpointConfiguration?: pulumi.Input; /** * A stringified JSON policy document that applies to the `execute-api` service for this DomainName regardless of the caller and Method configuration. You can use `Fn::ToJsonString` to enter your `policy` . For more information, see [Fn::ToJsonString](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-ToJsonString.html) . * * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::ApiGateway::DomainNameV2` for more information about the expected schema for this property. */ policy?: any; /** * The valid routing modes are [BASE_PATH_MAPPING_ONLY], [ROUTING_RULE_THEN_BASE_PATH_MAPPING] and [ROUTING_RULE_ONLY]. All other inputs are invalid. */ routingMode?: pulumi.Input; /** * The Transport Layer Security (TLS) version + cipher suite for this DomainName. */ securityPolicy?: pulumi.Input; /** * The collection of tags. Each tag element is associated with a given resource. */ tags?: pulumi.Input[]>; }