import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type */ export declare function getWorkloadIdentity(args: GetWorkloadIdentityArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetWorkloadIdentityArgs { /** * The name of the workload identity. The name must be unique within your account. */ name: string; } export interface GetWorkloadIdentityResult { /** * The list of allowed OAuth2 return URLs for resources associated with this workload identity. */ readonly allowedResourceOauth2ReturnUrls?: string[]; /** * The timestamp when the workload identity was created. */ readonly createdTime?: number; /** * The timestamp when the workload identity was last updated. */ readonly lastUpdatedTime?: number; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; /** * The Amazon Resource Name (ARN) of the workload identity. */ readonly workloadIdentityArn?: string; } /** * Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type */ export declare function getWorkloadIdentityOutput(args: GetWorkloadIdentityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetWorkloadIdentityOutputArgs { /** * The name of the workload identity. The name must be unique within your account. */ name: pulumi.Input; }