List Environment Blueprints
| datazone_list_environment_blueprints | R Documentation |
Lists blueprints in an Amazon DataZone environment¶
Description¶
Lists blueprints in an Amazon DataZone environment.
Usage¶
Arguments¶
domainIdentifier[required] The identifier of the Amazon DataZone domain.
managedSpecifies whether the environment blueprint is managed by Amazon DataZone.
maxResultsThe maximum number of blueprints to return in a single call to
list_environment_blueprints. When the number of blueprints to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_environment_blueprintsto list the next set of blueprints.nameThe name of the Amazon DataZone environment.
nextTokenWhen the number of blueprints in the environment is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of blueprints in the environment, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_environment_blueprintsto list the next set of blueprints.
Value¶
A list with the following syntax:
list(
items = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
id = "string",
name = "string",
provider = "string",
provisioningProperties = list(
cloudFormation = list(
templateUrl = "string"
)
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)