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(awsAccountId, awsAccountRegion,
domainIdentifier, environmentBlueprintIdentifier, maxResults, name,
nextToken, projectIdentifier)
Arguments¶
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. |
domainIdentifier |
[required] The identifier of the Amazon DataZone domain. |
environmentBlueprintIdentifier |
The identifier of the blueprint that was used to create the environment profiles that you want to list. |
maxResults |
The maximum number of environment profiles to return in a single
call to |
name |
|
nextToken |
When the number of environment profiles is greater than the
default value for the |
projectIdentifier |
The identifier of the Amazon DataZone project. |
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",
environmentBlueprintId = "string",
id = "string",
name = "string",
projectId = "string",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_environment_profiles(
awsAccountId = "string",
awsAccountRegion = "string",
domainIdentifier = "string",
environmentBlueprintIdentifier = "string",
maxResults = 123,
name = "string",
nextToken = "string",
projectIdentifier = "string"
)