UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

108 lines (107 loc) 4.09 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * The connection group for your distribution tenants. When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant. */ export declare class ConnectionGroup extends pulumi.CustomResource { /** * Get an existing ConnectionGroup 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<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ConnectionGroup; /** * Returns true if the given object is an instance of ConnectionGroup. 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 ConnectionGroup; /** * The ID of the Anycast static IP list. */ readonly anycastIpListId: pulumi.Output<string | undefined>; /** * The Amazon Resource Name (ARN) of the connection group. */ readonly arn: pulumi.Output<string>; /** * The ID of the connection group. */ readonly awsId: pulumi.Output<string>; /** * The date and time when the connection group was created. */ readonly createdTime: pulumi.Output<string>; /** * The current version of the connection group. */ readonly eTag: pulumi.Output<string>; /** * Whether the connection group is enabled. */ readonly enabled: pulumi.Output<boolean | undefined>; /** * IPv6 is enabled for the connection group. */ readonly ipv6Enabled: pulumi.Output<boolean | undefined>; /** * Whether the connection group is the default connection group for the distribution tenants. */ readonly isDefault: pulumi.Output<boolean>; /** * The date and time when the connection group was updated. */ readonly lastModifiedTime: pulumi.Output<string>; /** * The name of the connection group. */ readonly name: pulumi.Output<string>; /** * The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net. */ readonly routingEndpoint: pulumi.Output<string>; /** * The status of the connection group. */ readonly status: pulumi.Output<string>; /** * A complex type that contains zero or more ``Tag`` elements. */ readonly tags: pulumi.Output<outputs.Tag[] | undefined>; /** * Create a ConnectionGroup 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?: ConnectionGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ConnectionGroup resource. */ export interface ConnectionGroupArgs { /** * The ID of the Anycast static IP list. */ anycastIpListId?: pulumi.Input<string>; /** * Whether the connection group is enabled. */ enabled?: pulumi.Input<boolean>; /** * IPv6 is enabled for the connection group. */ ipv6Enabled?: pulumi.Input<boolean>; /** * The name of the connection group. */ name?: pulumi.Input<string>; /** * A complex type that contains zero or more ``Tag`` elements. */ tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>; }