List Environments
| datazone_list_environments | R Documentation |
Lists Amazon DataZone environments¶
Description¶
Lists Amazon DataZone environments.
Usage¶
datazone_list_environments(awsAccountId, awsAccountRegion,
domainIdentifier, environmentBlueprintIdentifier,
environmentProfileIdentifier, maxResults, name, nextToken,
projectIdentifier, provider, status)
Arguments¶
awsAccountIdThe identifier of the Amazon Web Services account where you want to list environments.
awsAccountRegionThe Amazon Web Services region where you want to list environments.
domainIdentifier[required] The identifier of the Amazon DataZone domain.
environmentBlueprintIdentifierThe identifier of the Amazon DataZone blueprint.
environmentProfileIdentifierThe identifier of the environment profile.
maxResultsThe maximum number of environments to return in a single call to
list_environments. When the number of environments to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_environmentsto list the next set of environments.nameThe name of the environment.
nextTokenWhen the number of environments is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of environments, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_environmentsto list the next set of environments.projectIdentifier[required] The identifier of the Amazon DataZone project.
providerThe provider of the environment.
statusThe status of the environments that you want to list.
Value¶
A list with the following syntax:
list(
items = list(
list(
awsAccountId = "string",
awsAccountRegion = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
environmentProfileId = "string",
id = "string",
name = "string",
projectId = "string",
provider = "string",
status = "ACTIVE"|"CREATING"|"UPDATING"|"DELETING"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED"|"VALIDATION_FAILED"|"SUSPENDED"|"DISABLED"|"EXPIRED"|"DELETED"|"INACCESSIBLE",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_environments(
awsAccountId = "string",
awsAccountRegion = "string",
domainIdentifier = "string",
environmentBlueprintIdentifier = "string",
environmentProfileIdentifier = "string",
maxResults = 123,
name = "string",
nextToken = "string",
projectIdentifier = "string",
provider = "string",
status = "ACTIVE"|"CREATING"|"UPDATING"|"DELETING"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED"|"VALIDATION_FAILED"|"SUSPENDED"|"DISABLED"|"EXPIRED"|"DELETED"|"INACCESSIBLE"
)