@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
63 lines (62 loc) • 2.64 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const example = new aws.iam.OutboundWebIdentityFederation("example", {});
* ```
*
* ## Import
*
* Using `pulumi import`, import IAM Outbound Web Identity Federation resources using the AWS account ID. For example:
*
* ```sh
* $ pulumi import aws:iam/outboundWebIdentityFederation:OutboundWebIdentityFederation example 123456789012
* ```
*/
export declare class OutboundWebIdentityFederation extends pulumi.CustomResource {
/**
* Get an existing OutboundWebIdentityFederation resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OutboundWebIdentityFederationState, opts?: pulumi.CustomResourceOptions): OutboundWebIdentityFederation;
/**
* Returns true if the given object is an instance of OutboundWebIdentityFederation. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is OutboundWebIdentityFederation;
/**
* A unique issuer URL for your AWS account that hosts the OpenID Connect (OIDC) discovery endpoints.
*/
readonly issuerIdentifier: pulumi.Output<string>;
/**
* Create a OutboundWebIdentityFederation resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args?: OutboundWebIdentityFederationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering OutboundWebIdentityFederation resources.
*/
export interface OutboundWebIdentityFederationState {
/**
* A unique issuer URL for your AWS account that hosts the OpenID Connect (OIDC) discovery endpoints.
*/
issuerIdentifier?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a OutboundWebIdentityFederation resource.
*/
export interface OutboundWebIdentityFederationArgs {
}