@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)
49 lines (48 loc) • 1.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* The resource schema to create a CodeArtifact package group.
*/
export declare function getPackageGroup(args: GetPackageGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetPackageGroupResult>;
export interface GetPackageGroupArgs {
/**
* The ARN of the package group.
*/
arn: string;
}
export interface GetPackageGroupResult {
/**
* The ARN of the package group.
*/
readonly arn?: string;
/**
* The contact info of the package group.
*/
readonly contactInfo?: string;
/**
* The text description of the package group.
*/
readonly description?: string;
/**
* The 12-digit account ID of the AWS account that owns the domain.
*/
readonly domainOwner?: string;
/**
* The package origin configuration of the package group.
*/
readonly originConfiguration?: outputs.codeartifact.PackageGroupOriginConfiguration;
/**
* An array of key-value pairs to apply to the package group.
*/
readonly tags?: outputs.Tag[];
}
/**
* The resource schema to create a CodeArtifact package group.
*/
export declare function getPackageGroupOutput(args: GetPackageGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPackageGroupResult>;
export interface GetPackageGroupOutputArgs {
/**
* The ARN of the package group.
*/
arn: pulumi.Input<string>;
}