Create Application
ssoadmin_create_application | R Documentation |
Creates an application in IAM Identity Center for the given application provider¶
Description¶
Creates an application in IAM Identity Center for the given application provider.
Usage¶
ssoadmin_create_application(ApplicationProviderArn, ClientToken,
Description, InstanceArn, Name, PortalOptions, Status, Tags)
Arguments¶
ApplicationProviderArn
[required] The ARN of the application provider under which the operation will run.
ClientToken
Specifies a unique, case-sensitive ID that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same
ClientToken
, but with different parameters, the retry fails with anIdempotentParameterMismatch
error.Description
The description of the .
InstanceArn
[required] The ARN of the instance of IAM Identity Center under which the operation will run. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
Name
[required] The name of the .
PortalOptions
A structure that describes the options for the portal associated with an application.
Status
Specifies whether the application is enabled or disabled.
Tags
Specifies tags to be attached to the application.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_application(
ApplicationProviderArn = "string",
ClientToken = "string",
Description = "string",
InstanceArn = "string",
Name = "string",
PortalOptions = list(
SignInOptions = list(
ApplicationUrl = "string",
Origin = "IDENTITY_CENTER"|"APPLICATION"
),
Visibility = "ENABLED"|"DISABLED"
),
Status = "ENABLED"|"DISABLED",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)