List Environment Profiles
| datazone_list_environment_profiles | R Documentation |
Lists Amazon DataZone environment profiles¶
Description¶
Lists Amazon DataZone environment profiles.
Usage¶
datazone_list_environment_profiles(domainIdentifier, awsAccountId,
awsAccountRegion, environmentBlueprintIdentifier, projectIdentifier,
name, nextToken, maxResults)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain. |
awsAccountId |
The identifier of the Amazon Web Services account where you want to list environment profiles. |
awsAccountRegion |
The Amazon Web Services region where you want to list environment profiles. |
environmentBlueprintIdentifier |
The identifier of the blueprint that was used to create the environment profiles that you want to list. |
projectIdentifier |
The identifier of the Amazon DataZone project. |
nextToken |
When the number of environment profiles is greater than the
default value for the |
maxResults |
The maximum number of environment profiles to return in a single
call to |
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
domainId = "string",
awsAccountId = "string",
awsAccountRegion = "string",
createdBy = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
name = "string",
description = "string",
environmentBlueprintId = "string",
projectId = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_environment_profiles(
domainIdentifier = "string",
awsAccountId = "string",
awsAccountRegion = "string",
environmentBlueprintIdentifier = "string",
projectIdentifier = "string",
name = "string",
nextToken = "string",
maxResults = 123
)