@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)
41 lines (40 loc) • 1.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Schema for AWS::EKS::FargateProfile
*/
export declare function getFargateProfile(args: GetFargateProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetFargateProfileResult>;
export interface GetFargateProfileArgs {
/**
* Name of the Cluster
*/
clusterName: string;
/**
* Name of FargateProfile
*/
fargateProfileName: string;
}
export interface GetFargateProfileResult {
/**
* The ARN of the cluster, such as `arn:aws:eks:us-west-2:666666666666:fargateprofile/myCluster/myFargateProfile/1cb1a11a-1dc1-1d11-cf11-1111f11fa111` .
*/
readonly arn?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Schema for AWS::EKS::FargateProfile
*/
export declare function getFargateProfileOutput(args: GetFargateProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFargateProfileResult>;
export interface GetFargateProfileOutputArgs {
/**
* Name of the Cluster
*/
clusterName: pulumi.Input<string>;
/**
* Name of FargateProfile
*/
fargateProfileName: pulumi.Input<string>;
}