List Components
| proton_list_components | R Documentation |
List components with summary data¶
Description¶
List components with summary data. You can filter the result list by environment, service, or a single service instance.
For more information about components, see Proton components in the Proton User Guide.
Usage¶
Arguments¶
environmentNameThe name of an environment for result list filtering. Proton returns components associated with the environment or attached to service instances running in it.
maxResultsThe maximum number of components to list.
nextTokenA token that indicates the location of the next component in the array of components, after the list of components that was previously requested.
serviceInstanceNameThe name of a service instance for result list filtering. Proton returns the component attached to the service instance, if any.
serviceNameThe name of a service for result list filtering. Proton returns components attached to service instances of the service.
Value¶
A list with the following syntax:
list(
components = list(
list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
deploymentStatus = "IN_PROGRESS"|"FAILED"|"SUCCEEDED"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETE_COMPLETE"|"CANCELLING"|"CANCELLED",
deploymentStatusMessage = "string",
environmentName = "string",
lastAttemptedDeploymentId = "string",
lastDeploymentAttemptedAt = as.POSIXct(
"2015-01-01"
),
lastDeploymentSucceededAt = as.POSIXct(
"2015-01-01"
),
lastModifiedAt = as.POSIXct(
"2015-01-01"
),
lastSucceededDeploymentId = "string",
name = "string",
serviceInstanceName = "string",
serviceName = "string"
)
),
nextToken = "string"
)