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.
managed
Specifies whether the environment blueprint is managed by Amazon DataZone.
maxResults
The 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 aNextToken
value that you can use in a subsequent call tolist_environment_blueprints
to list the next set of blueprints.name
The name of the Amazon DataZone environment.
nextToken
When the number of blueprints in the environment is greater than the default value for the
MaxResults
parameter, or if you explicitly specify a value forMaxResults
that is less than the number of blueprints in the environment, the response includes a pagination token namedNextToken
. You can specify thisNextToken
value in a subsequent call tolist_environment_blueprints
to 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"
)