Learn R Programming

paws.security.identity (version 0.1.12)

cognitoidentityprovider_update_identity_provider: Updates identity provider information for a user pool

Description

Updates identity provider information for a user pool.

Usage

cognitoidentityprovider_update_identity_provider(UserPoolId,
  ProviderName, ProviderDetails, AttributeMapping, IdpIdentifiers)

Value

A list with the following syntax:

list(
  IdentityProvider = list(
    UserPoolId = "string",
    ProviderName = "string",
    ProviderType = "SAML"|"Facebook"|"Google"|"LoginWithAmazon"|"SignInWithApple"|"OIDC",
    ProviderDetails = list(
      "string"
    ),
    AttributeMapping = list(
      "string"
    ),
    IdpIdentifiers = list(
      "string"
    ),
    LastModifiedDate = as.POSIXct(
      "2015-01-01"
    ),
    CreationDate = as.POSIXct(
      "2015-01-01"
    )
  )
)

Arguments

UserPoolId

[required] The user pool ID.

ProviderName

[required] The identity provider name.

ProviderDetails

The identity provider details to be updated, such as MetadataURL and MetadataFile.

AttributeMapping

The identity provider attribute mapping to be changed.

IdpIdentifiers

A list of identity provider identifiers.

Request syntax

svc$update_identity_provider(
  UserPoolId = "string",
  ProviderName = "string",
  ProviderDetails = list(
    "string"
  ),
  AttributeMapping = list(
    "string"
  ),
  IdpIdentifiers = list(
    "string"
  )
)