Put Identity Provider Configuration
workmail_put_identity_provider_configuration | R Documentation |
Enables integration between IAM Identity Center (IdC) and WorkMail to proxy authentication requests for mailbox users¶
Description¶
Enables integration between IAM Identity Center (IdC) and WorkMail to proxy authentication requests for mailbox users. You can connect your IdC directory or your external directory to WorkMail through IdC and manage access to WorkMail mailboxes in a single place. For enhanced protection, you could enable Multifactor Authentication (MFA) and Personal Access Tokens.
Usage¶
workmail_put_identity_provider_configuration(OrganizationId,
AuthenticationMode, IdentityCenterConfiguration,
PersonalAccessTokenConfiguration)
Arguments¶
OrganizationId
[required] The ID of the WorkMail Organization.
AuthenticationMode
[required] The authentication mode used in WorkMail.
IdentityCenterConfiguration
[required] The details of the IAM Identity Center configuration.
PersonalAccessTokenConfiguration
[required] The details of the Personal Access Token configuration.
Value¶
An empty list.
Request syntax¶
svc$put_identity_provider_configuration(
OrganizationId = "string",
AuthenticationMode = "IDENTITY_PROVIDER_ONLY"|"IDENTITY_PROVIDER_AND_DIRECTORY",
IdentityCenterConfiguration = list(
InstanceArn = "string",
ApplicationArn = "string"
),
PersonalAccessTokenConfiguration = list(
Status = "ACTIVE"|"INACTIVE",
LifetimeInDays = 123
)
)