Skip to content

Get Account Pool

datazone_get_account_pool R Documentation

Gets the details of the account pool

Description

Gets the details of the account pool.

Usage

datazone_get_account_pool(domainIdentifier, identifier)

Arguments

domainIdentifier

[required] The ID of the domain in which the account pool lives whose details are to be displayed.

identifier

[required] The ID of the account pool whose details are to be displayed.

Value

A list with the following syntax:

list(
  domainId = "string",
  name = "string",
  id = "string",
  description = "string",
  resolutionStrategy = "MANUAL",
  accountSource = list(
    accounts = list(
      list(
        awsAccountId = "string",
        supportedRegions = list(
          "string"
        ),
        awsAccountName = "string"
      )
    ),
    customAccountPoolHandler = list(
      lambdaFunctionArn = "string",
      lambdaExecutionRoleArn = "string"
    )
  ),
  createdBy = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedBy = "string",
  domainUnitId = "string"
)

Request syntax

svc$get_account_pool(
  domainIdentifier = "string",
  identifier = "string"
)