IAM Identity Center (successor to Single Sign-On) helps you securely create, or connect, your workforce identities and manage their access centrally across Amazon Web Services accounts and applications. IAM Identity Center is the recommended approach for workforce authentication and authorization in Amazon Web Services, for organizations of any size and type.
IAM Identity Center uses the sso and identitystore API namespaces.
This reference guide provides information on single sign-on operations which could be used for access management of Amazon Web Services accounts. For information about IAM Identity Center features, see the IAM Identity Center User Guide.
Many operations in the IAM Identity Center APIs rely on identifiers for users and groups, known as principals. For more information about how to work with principals and principal IDs in IAM Identity Center, see the Identity Store API Reference.
Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, and more). The SDKs provide a convenient way to create programmatic access to IAM Identity Center and other Amazon Web Services services. For more information about the Amazon Web Services SDKs, including how to download and install them, see Tools for Amazon Web Services.
ssoadmin(config = list(), credentials = list(), endpoint =NULL, region =NULL)
Arguments
config: Optional configuration of credentials, endpoint, and/or region.
credentials :
creds :
access_key_id : AWS access key ID
secret_access_key : AWS secret access key
session_token : AWS temporary session token
profile : The name of a profile to use. If not given, then the default profile is used.
anonymous : Set anonymous credentials.
endpoint : The complete URL to use for the constructed client.
region : The AWS Region used in instantiating the client.
close_connection : Immediately close all HTTP connections.
timeout : The time in seconds till a timeout exception is thrown when attempting to make a connection. The default is 60 seconds.
s3_force_path_style : Set this to true to force the request to use path-style addressing, i.e. http://s3.amazonaws.com/BUCKET/KEY.
credentials: Optional credentials shorthand for the config parameter
creds :
access_key_id : AWS access key ID
secret_access_key : AWS secret access key
session_token : AWS temporary session token
profile : The name of a profile to use. If not given, then the default profile is used.
anonymous : Set anonymous credentials.
endpoint: Optional shorthand for complete URL to use for the constructed client.
region: Optional shorthand for AWS Region used in instantiating the client.
Returns
A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.
Attaches the specified customer managed policy to the specified PermissionSet
attach_managed_policy_to_permission_set
Attaches an Amazon Web Services managed policy ARN to a permission set
create_account_assignment
Assigns access to a principal for a specified Amazon Web Services account using a specified permission set
create_application
Creates an application in IAM Identity Center for the given application provider
create_application_assignment
Grant application access to a user or group
create_instance
Creates an instance of IAM Identity Center for a standalone Amazon Web Services account that is not managed by Organizations or a member Amazon Web Services account in an organization
Disables the attributes-based access control (ABAC) feature for the specified IAM Identity Center instance and deletes all of the attribute mappings that have been configured
delete_permissions_boundary_from_permission_set
Deletes the permissions boundary from a specified PermissionSet
delete_permission_set
Deletes the specified permission set
delete_trusted_token_issuer
Deletes a trusted token issuer configuration from an instance of IAM Identity Center
describe_account_assignment_creation_status
Describes the status of the assignment creation request
describe_account_assignment_deletion_status
Describes the status of the assignment deletion request
describe_application
Retrieves the details of an application associated with an instance of IAM Identity Center
describe_application_assignment
Retrieves a direct assignment of a user or group to an application
describe_application_provider
Retrieves details about a provider that can be used to connect an Amazon Web Services managed application or customer managed application to IAM Identity Center
describe_instance
Returns the details of an instance of IAM Identity Center
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
describe_permission_set
Gets the details of the permission set
describe_permission_set_provisioning_status
Describes the status for the given permission set provisioning request
describe_trusted_token_issuer
Retrieves details about a trusted token issuer configuration stored in an instance of IAM Identity Center
Updates the IAM Identity Center identity store attributes that you can use with the IAM Identity Center instance for attributes-based access control (ABAC)
update_permission_set
Updates an existing permission set
update_trusted_token_issuer
Updates the name of the trusted token issuer, or the path of a source attribute or destination attribute for a trusted token issuer configuration
Examples
## Not run:svc <- ssoadmin()svc$attach_customer_managed_policy_reference_to_permission_set( Foo =123)## End(Not run)