import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * VpcLattice ResourceConfiguration CFN resource */ export declare class ResourceConfiguration extends pulumi.CustomResource { /** * Get an existing ResourceConfiguration 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): ResourceConfiguration; /** * Returns true if the given object is an instance of ResourceConfiguration. 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 ResourceConfiguration; /** * Specifies whether the resource configuration can be associated with a sharable service network. */ readonly allowAssociationToSharableServiceNetwork: pulumi.Output; /** * The Amazon Resource Name (ARN) of the resource configuration. */ readonly arn: pulumi.Output; /** * The ID of the resource configuration. */ readonly awsId: pulumi.Output; /** * The custom domain name. */ readonly customDomainName: pulumi.Output; /** * The domain verification ID. */ readonly domainVerificationId: pulumi.Output; /** * (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain. */ readonly groupDomain: pulumi.Output; /** * The name of the resource configuration. */ readonly name: pulumi.Output; /** * (SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use to access a resource configuration (for example: 1-65535). You can separate port ranges using commas (for example: 1,2,22-30). */ readonly portRanges: pulumi.Output; /** * (SINGLE, GROUP) The protocol accepted by the resource configuration. */ readonly protocolType: pulumi.Output; /** * The auth type for the resource configuration. */ readonly resourceConfigurationAuthType: pulumi.Output; /** * Identifies the resource configuration in one of the following ways: * * - *Amazon Resource Name (ARN)* - Supported resource-types that are provisioned by AWS services, such as RDS databases, can be identified by their ARN. * - *Domain name* - Any domain name that is publicly resolvable. * - *IP address* - For IPv4 and IPv6, only IP addresses in the VPC are supported. */ readonly resourceConfigurationDefinition: pulumi.Output; /** * The ID of the group resource configuration. */ readonly resourceConfigurationGroupId: pulumi.Output; /** * The type of resource configuration. A resource configuration can be one of the following types: * * - *SINGLE* - A single resource. * - *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration. * - *CHILD* - A single resource that is part of a group resource configuration. * - *ARN* - An AWS resource. */ readonly resourceConfigurationType: pulumi.Output; /** * The ID of the resource gateway. */ readonly resourceGatewayId: pulumi.Output; /** * The tags for the resource configuration. */ readonly tags: pulumi.Output; /** * Create a ResourceConfiguration 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: ResourceConfigurationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ResourceConfiguration resource. */ export interface ResourceConfigurationArgs { /** * Specifies whether the resource configuration can be associated with a sharable service network. */ allowAssociationToSharableServiceNetwork?: pulumi.Input; /** * The custom domain name. */ customDomainName?: pulumi.Input; /** * The domain verification ID. */ domainVerificationId?: pulumi.Input; /** * (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain. */ groupDomain?: pulumi.Input; /** * The name of the resource configuration. */ name?: pulumi.Input; /** * (SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use to access a resource configuration (for example: 1-65535). You can separate port ranges using commas (for example: 1,2,22-30). */ portRanges?: pulumi.Input[]>; /** * (SINGLE, GROUP) The protocol accepted by the resource configuration. */ protocolType?: pulumi.Input; /** * The auth type for the resource configuration. */ resourceConfigurationAuthType?: pulumi.Input; /** * Identifies the resource configuration in one of the following ways: * * - *Amazon Resource Name (ARN)* - Supported resource-types that are provisioned by AWS services, such as RDS databases, can be identified by their ARN. * - *Domain name* - Any domain name that is publicly resolvable. * - *IP address* - For IPv4 and IPv6, only IP addresses in the VPC are supported. */ resourceConfigurationDefinition?: pulumi.Input; /** * The ID of the group resource configuration. */ resourceConfigurationGroupId?: pulumi.Input; /** * The type of resource configuration. A resource configuration can be one of the following types: * * - *SINGLE* - A single resource. * - *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration. * - *CHILD* - A single resource that is part of a group resource configuration. * - *ARN* - An AWS resource. */ resourceConfigurationType: pulumi.Input; /** * The ID of the resource gateway. */ resourceGatewayId?: pulumi.Input; /** * The tags for the resource configuration. */ tags?: pulumi.Input[]>; }