@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)
73 lines (72 loc) • 2.78 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
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 function getConnectionGroup(args: GetConnectionGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectionGroupResult>;
export interface GetConnectionGroupArgs {
/**
* The ID of the connection group.
*/
id: string;
}
export interface GetConnectionGroupResult {
/**
* The ID of the Anycast static IP list.
*/
readonly anycastIpListId?: string;
/**
* The Amazon Resource Name (ARN) of the connection group.
*/
readonly arn?: string;
/**
* The date and time when the connection group was created.
*/
readonly createdTime?: string;
/**
* The current version of the connection group.
*/
readonly eTag?: string;
/**
* Whether the connection group is enabled.
*/
readonly enabled?: boolean;
/**
* The ID of the connection group.
*/
readonly id?: string;
/**
* IPv6 is enabled for the connection group.
*/
readonly ipv6Enabled?: boolean;
/**
* Whether the connection group is the default connection group for the distribution tenants.
*/
readonly isDefault?: boolean;
/**
* The date and time when the connection group was updated.
*/
readonly lastModifiedTime?: string;
/**
* The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
*/
readonly routingEndpoint?: string;
/**
* The status of the connection group.
*/
readonly status?: string;
/**
* A complex type that contains zero or more ``Tag`` elements.
*/
readonly tags?: outputs.Tag[];
}
/**
* 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 function getConnectionGroupOutput(args: GetConnectionGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectionGroupResult>;
export interface GetConnectionGroupOutputArgs {
/**
* The ID of the connection group.
*/
id: pulumi.Input<string>;
}