Skip to content

Get Payment Credential Provider

bedrockagentcorecontrol_get_payment_credential_provider R Documentation

Retrieves information about a specific payment credential provider

Description

Retrieves information about a specific payment credential provider.

Usage

bedrockagentcorecontrol_get_payment_credential_provider(name)

Arguments

name

[required] The name of the payment credential provider to retrieve.

Value

A list with the following syntax:

list(
  name = "string",
  credentialProviderArn = "string",
  credentialProviderVendor = "CoinbaseCDP"|"StripePrivy",
  providerConfigurationOutput = list(
    coinbaseCdpConfiguration = list(
      apiKeyId = "string",
      apiKeySecretArn = list(
        secretArn = "string"
      ),
      walletSecretArn = list(
        secretArn = "string"
      )
    ),
    stripePrivyConfiguration = list(
      appId = "string",
      appSecretArn = list(
        secretArn = "string"
      ),
      authorizationPrivateKeyArn = list(
        secretArn = "string"
      ),
      authorizationId = "string"
    )
  ),
  createdTime = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedTime = as.POSIXct(
    "2015-01-01"
  ),
  tags = list(
    "string"
  )
)

Request syntax

svc$get_payment_credential_provider(
  name = "string"
)