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)

14 lines (13 loc) 617 B
import * as pulumi from "@pulumi/pulumi"; export declare function getPartition(opts?: pulumi.InvokeOptions): Promise<GetPartitionResult>; export interface GetPartitionResult { /** * Base DNS domain name for the current partition (e.g., `amazonaws.com` in AWS Commercial, `amazonaws.com.cn` in AWS China). */ readonly dnsSuffix: string; /** * Identifier of the current partition (e.g., `aws` in AWS Commercial, `aws-cn` in AWS China). */ readonly partition: string; } export declare function getPartitionOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPartitionResult>;