ApplicationArgs

data class ApplicationArgs(val applicationProviderArn: Output<String>? = null, val clientToken: Output<String>? = null, val description: Output<String>? = null, val instanceArn: Output<String>? = null, val name: Output<String>? = null, val portalOptions: Output<ApplicationPortalOptionsArgs>? = null, val status: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ApplicationArgs>

Resource for managing an AWS SSO Admin Application.

The CreateApplication API only supports custom OAuth 2.0 applications. Creation of 3rd party SAML or OAuth 2.0 applications require setup to be done through the associated app service or AWS console. See this issue for additional context.

Example Usage

Import

Using pulumi import, import SSO Admin Application using the id. For example:

$ pulumi import aws:ssoadmin/application:Application example arn:aws:sso::012345678901:application/id-12345678

Constructors

Link copied to clipboard
fun ApplicationArgs(applicationProviderArn: Output<String>? = null, clientToken: Output<String>? = null, description: Output<String>? = null, instanceArn: Output<String>? = null, name: Output<String>? = null, portalOptions: Output<ApplicationPortalOptionsArgs>? = null, status: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ApplicationArgs

Properties

Link copied to clipboard
val applicationProviderArn: Output<String>? = null

ARN of the application provider.

Link copied to clipboard
val clientToken: Output<String>? = null

A unique, case-sensitive ID that you provide to ensure the idempotency of the request. AWS generates a random value when not provided.

Link copied to clipboard
val description: Output<String>? = null

Description of the application.

Link copied to clipboard
val instanceArn: Output<String>? = null

ARN of the instance of IAM Identity Center.

Link copied to clipboard
val name: Output<String>? = null

Name of the application. The following arguments are optional:

Link copied to clipboard

Options for the portal associated with an application. See portal_options below.

Link copied to clipboard
val status: Output<String>? = null

Status of the application. Valid values are ENABLED and DISABLED.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.