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)

54 lines (53 loc) 1.83 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::CloudFront::TrustStore. TrustStores contain CA certificates for mTLS authentication and can be associated with CloudFront distributions. */ export declare function getTrustStore(args: GetTrustStoreArgs, opts?: pulumi.InvokeOptions): Promise<GetTrustStoreResult>; export interface GetTrustStoreArgs { /** * The unique identifier for the trust store */ id: string; } export interface GetTrustStoreResult { /** * The Amazon Resource Name (ARN) of the trust store */ readonly arn?: string; /** * The version identifier for the current version of the trust store. */ readonly eTag?: string; /** * The unique identifier for the trust store */ readonly id?: string; /** * The last modification timestamp of the trust store PEM file */ readonly lastModifiedTime?: string; /** * The number of CA certificates in the trust store PEM file */ readonly numberOfCaCertificates?: number; /** * Current status of the trust store */ readonly status?: enums.cloudfront.TrustStoreStatus; /** * Key-value pairs for resource tagging */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::CloudFront::TrustStore. TrustStores contain CA certificates for mTLS authentication and can be associated with CloudFront distributions. */ export declare function getTrustStoreOutput(args: GetTrustStoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTrustStoreResult>; export interface GetTrustStoreOutputArgs { /** * The unique identifier for the trust store */ id: pulumi.Input<string>; }