Skip to content

Describe Instance Access Control Attribute Configuration

ssoadmin_describe_instance_access_control_attribute_configuration R Documentation

Returns the list of IAM Identity Center identity store attributes that have been configured to work with attributes-based access control (ABAC) for the specified IAM Identity Center instance

Description

Returns the list of IAM Identity Center identity store attributes that have been configured to work with attributes-based access control (ABAC) for the specified IAM Identity Center instance. This will not return attributes configured and sent by an external identity provider. For more information about ABAC, see Attribute-Based Access Control in the IAM Identity Center User Guide.

Usage

ssoadmin_describe_instance_access_control_attribute_configuration(
  InstanceArn)

Arguments

InstanceArn

[required] The ARN of the IAM Identity Center instance under which the operation will be executed.

Value

A list with the following syntax:

list(
  InstanceAccessControlAttributeConfiguration = list(
    AccessControlAttributes = list(
      list(
        Key = "string",
        Value = list(
          Source = list(
            "string"
          )
        )
      )
    )
  ),
  Status = "ENABLED"|"CREATION_IN_PROGRESS"|"CREATION_FAILED",
  StatusReason = "string"
)

Request syntax

svc$describe_instance_access_control_attribute_configuration(
  InstanceArn = "string"
)