import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * A service network is a logical boundary for a collection of services. You can associate services and VPCs with a service network. */ export declare class ServiceNetwork extends pulumi.CustomResource { /** * Get an existing ServiceNetwork 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): ServiceNetwork; /** * Returns true if the given object is an instance of ServiceNetwork. 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 ServiceNetwork; /** * The Amazon Resource Name (ARN) of the service network. */ readonly arn: pulumi.Output; /** * The type of IAM policy. * * - `NONE` : The resource does not use an IAM policy. This is the default. * - `AWS_IAM` : The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required. */ readonly authType: pulumi.Output; /** * The ID of the service network. */ readonly awsId: pulumi.Output; /** * The date and time that the service network was created, specified in ISO-8601 format. */ readonly createdAt: pulumi.Output; /** * The date and time of the last update, specified in ISO-8601 format. */ readonly lastUpdatedAt: pulumi.Output; /** * The name of the service network. The name must be unique to the account. The valid characters are a-z, 0-9, and hyphens (-). You can't use a hyphen as the first or last character, or immediately after another hyphen. * * If you don't specify a name, CloudFormation generates one. However, if you specify a name, and later want to replace the resource, you must specify a new name. */ readonly name: pulumi.Output; /** * Specify if the service network should be enabled for sharing. */ readonly sharingConfig: pulumi.Output; /** * The tags for the service network. */ readonly tags: pulumi.Output; /** * Create a ServiceNetwork 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?: ServiceNetworkArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ServiceNetwork resource. */ export interface ServiceNetworkArgs { /** * The type of IAM policy. * * - `NONE` : The resource does not use an IAM policy. This is the default. * - `AWS_IAM` : The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required. */ authType?: pulumi.Input; /** * The name of the service network. The name must be unique to the account. The valid characters are a-z, 0-9, and hyphens (-). You can't use a hyphen as the first or last character, or immediately after another hyphen. * * If you don't specify a name, CloudFormation generates one. However, if you specify a name, and later want to replace the resource, you must specify a new name. */ name?: pulumi.Input; /** * Specify if the service network should be enabled for sharing. */ sharingConfig?: pulumi.Input; /** * The tags for the service network. */ tags?: pulumi.Input[]>; }