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)

79 lines (78 loc) 2.85 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Represents a stored analysis within a collaboration */ export declare function getAnalysisTemplate(args: GetAnalysisTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetAnalysisTemplateResult>; export interface GetAnalysisTemplateArgs { /** * Returns the identifier for the analysis template. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE2222` */ analysisTemplateIdentifier: string; /** * The identifier for a membership resource. */ membershipIdentifier: string; } export interface GetAnalysisTemplateResult { /** * Returns the identifier for the analysis template. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE2222` */ readonly analysisTemplateIdentifier?: string; /** * Returns the Amazon Resource Name (ARN) of the analysis template. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111/analysistemplates/a1b2c3d4-5678-90ab-cdef-EXAMPLE2222` */ readonly arn?: string; /** * Returns the unique ARN for the analysis template’s associated collaboration. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:collaboration/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333` */ readonly collaborationArn?: string; /** * Returns the unique ID for the associated collaboration of the analysis template. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE33333` */ readonly collaborationIdentifier?: string; /** * The description of the analysis template. */ readonly description?: string; /** * Returns the Amazon Resource Name (ARN) of the member who created the analysis template. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` */ readonly membershipArn?: string; /** * The source metadata for the analysis template. */ readonly sourceMetadata?: outputs.cleanrooms.AnalysisTemplateAnalysisSourceMetadataProperties; /** * An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template. */ readonly tags?: outputs.Tag[]; } /** * Represents a stored analysis within a collaboration */ export declare function getAnalysisTemplateOutput(args: GetAnalysisTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAnalysisTemplateResult>; export interface GetAnalysisTemplateOutputArgs { /** * Returns the identifier for the analysis template. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE2222` */ analysisTemplateIdentifier: pulumi.Input<string>; /** * The identifier for a membership resource. */ membershipIdentifier: pulumi.Input<string>; }