List Applications
ssoadmin_list_applications | R Documentation |
Lists all applications associated with the instance of IAM Identity Center¶
Description¶
Lists all applications associated with the instance of IAM Identity
Center. When listing applications for an organization instance in the
management account, member accounts must use the applicationAccount
parameter to filter the list to only applications created from that
account. When listing applications for an account instance in the same
member account, a filter is not required.
Usage¶
ssoadmin_list_applications(InstanceArn, MaxResults, NextToken, Filter)
Arguments¶
InstanceArn |
[required] The ARN of the IAM Identity Center application 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. |
MaxResults |
Specifies the total number of results that you want included in
each response. If additional items exist beyond the number you specify,
the |
NextToken |
Specifies that you want to receive the next page of results.
Valid only if you received a |
Filter |
Filters response results. |
Value¶
A list with the following syntax:
list(
Applications = list(
list(
ApplicationArn = "string",
ApplicationProviderArn = "string",
Name = "string",
ApplicationAccount = "string",
InstanceArn = "string",
Status = "ENABLED"|"DISABLED",
PortalOptions = list(
SignInOptions = list(
Origin = "IDENTITY_CENTER"|"APPLICATION",
ApplicationUrl = "string"
),
Visibility = "ENABLED"|"DISABLED"
),
Description = "string",
CreatedDate = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_applications(
InstanceArn = "string",
MaxResults = 123,
NextToken = "string",
Filter = list(
ApplicationAccount = "string",
ApplicationProvider = "string"
)
)