Skip to content

Get Environment Account Connection

proton_get_environment_account_connection R Documentation

In an environment account, get the detailed data for an environment account connection

Description

In an environment account, get the detailed data for an environment account connection.

For more information, see Environment account connections in the Proton User guide.

Usage

proton_get_environment_account_connection(id)

Arguments

id

[required] The ID of the environment account connection that you want to get the detailed data for.

Value

A list with the following syntax:

list(
  environmentAccountConnection = list(
    arn = "string",
    codebuildRoleArn = "string",
    componentRoleArn = "string",
    environmentAccountId = "string",
    environmentName = "string",
    id = "string",
    lastModifiedAt = as.POSIXct(
      "2015-01-01"
    ),
    managementAccountId = "string",
    requestedAt = as.POSIXct(
      "2015-01-01"
    ),
    roleArn = "string",
    status = "PENDING"|"CONNECTED"|"REJECTED"
  )
)

Request syntax

svc$get_environment_account_connection(
  id = "string"
)