@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.29 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
*/
export declare function getS3TableIntegration(args: GetS3TableIntegrationArgs, opts?: pulumi.InvokeOptions): Promise<GetS3TableIntegrationResult>;
export interface GetS3TableIntegrationArgs {
/**
* The ARN of the S3 Table Integration
*/
arn: string;
}
export interface GetS3TableIntegrationResult {
/**
* The ARN of the S3 Table Integration
*/
readonly arn?: string;
/**
* The CloudWatch Logs data sources to associate with the S3 Table Integration
*/
readonly logSources?: outputs.observabilityadmin.S3TableIntegrationLogSource[];
/**
* An array of key-value pairs to apply to this resource
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
*/
export declare function getS3TableIntegrationOutput(args: GetS3TableIntegrationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetS3TableIntegrationResult>;
export interface GetS3TableIntegrationOutputArgs {
/**
* The ARN of the S3 Table Integration
*/
arn: pulumi.Input<string>;
}