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
list_environment_profiles
. When the number of environment profiles to be listed is greater than the value ofMaxResults
, the response contains aNextToken
value that you can use in a subsequent call tolist_environment_profiles
to list the next set of environment profiles.name
nextToken
When the number of environment profiles 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 environment profiles, the response includes a pagination token namedNextToken
. You can specify thisNextToken
value in a subsequent call tolist_environment_profiles
to list the next set of environment profiles.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"
)