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)

52 lines (51 loc) 1.9 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource Schema for AWS::ServiceCatalogAppRegistry::AttributeGroup. */ export declare function getAttributeGroup(args: GetAttributeGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetAttributeGroupResult>; export interface GetAttributeGroupArgs { /** * The globally unique attribute group identifier of the attribute group. */ id: string; } export interface GetAttributeGroupResult { /** * The Amazon resource name (ARN) that specifies the attribute group across services. */ readonly arn?: string; /** * A nested object in a JSON or YAML template that supports arbitrary definitions. Represents the attributes in an attribute group that describes an application and its components. * * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::ServiceCatalogAppRegistry::AttributeGroup` for more information about the expected schema for this property. */ readonly attributes?: any; /** * The description of the attribute group. */ readonly description?: string; /** * The globally unique attribute group identifier of the attribute group. */ readonly id?: string; /** * The name of the attribute group. */ readonly name?: string; /** * Key-value pairs you can use to associate with the attribute group. */ readonly tags?: { [key: string]: string; }; } /** * Resource Schema for AWS::ServiceCatalogAppRegistry::AttributeGroup. */ export declare function getAttributeGroupOutput(args: GetAttributeGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAttributeGroupResult>; export interface GetAttributeGroupOutputArgs { /** * The globally unique attribute group identifier of the attribute group. */ id: pulumi.Input<string>; }