Describe Instance
| ssoadmin_describe_instance | R Documentation | 
Returns the details of an instance of IAM Identity Center¶
Description¶
Returns the details of an instance of IAM Identity Center. The status can be one of the following:
- 
CREATE_IN_PROGRESS- The instance is in the process of being created. When the instance is ready for use, DescribeInstance returns the status ofACTIVE. While the instance is in theCREATE_IN_PROGRESSstate, you can call only DescribeInstance and DeleteInstance operations.
- 
DELETE_IN_PROGRESS- The instance is being deleted. ReturnsAccessDeniedExceptionafter the delete operation completes.
- 
ACTIVE- The instance is active.
Usage¶
ssoadmin_describe_instance(InstanceArn)
Arguments¶
| InstanceArn | [required] The ARN of the instance of IAM Identity Center under which the operation will run. | 
Value¶
A list with the following syntax:
list(
  InstanceArn = "string",
  IdentityStoreId = "string",
  OwnerAccountId = "string",
  Name = "string",
  CreatedDate = as.POSIXct(
    "2015-01-01"
  ),
  Status = "CREATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"ACTIVE"
)
Request syntax¶
svc$describe_instance(
  InstanceArn = "string"
)