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)

37 lines (36 loc) 1.25 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * An example resource schema demonstrating some basic constructs and validation rules. */ export declare function getServiceProfile(args: GetServiceProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceProfileResult>; export interface GetServiceProfileArgs { /** * Service profile Id. Returned after successful create. */ id: string; } export interface GetServiceProfileResult { /** * Service profile Arn. Returned after successful create. */ readonly arn?: string; /** * Service profile Id. Returned after successful create. */ readonly id?: string; /** * A list of key-value pairs that contain metadata for the service profile. */ readonly tags?: outputs.Tag[]; } /** * An example resource schema demonstrating some basic constructs and validation rules. */ export declare function getServiceProfileOutput(args: GetServiceProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceProfileResult>; export interface GetServiceProfileOutputArgs { /** * Service profile Id. Returned after successful create. */ id: pulumi.Input<string>; }