@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)
47 lines (46 loc) • 1.41 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::IoT::ThingGroup
*/
export declare function getThingGroup(args: GetThingGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetThingGroupResult>;
export interface GetThingGroupArgs {
/**
* The thing group name.
*/
thingGroupName: string;
}
export interface GetThingGroupResult {
/**
* The thing group ARN.
*/
readonly arn?: string;
/**
* The thing group ID.
*/
readonly id?: string;
/**
* The dynamic thing group search query string.
*
* The `queryString` attribute *is* required for `CreateDynamicThingGroup` . The `queryString` attribute *is not* required for `CreateThingGroup` .
*/
readonly queryString?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
/**
* Thing group properties.
*/
readonly thingGroupProperties?: outputs.iot.ThingGroupPropertiesProperties;
}
/**
* Resource Type definition for AWS::IoT::ThingGroup
*/
export declare function getThingGroupOutput(args: GetThingGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetThingGroupResult>;
export interface GetThingGroupOutputArgs {
/**
* The thing group name.
*/
thingGroupName: pulumi.Input<string>;
}