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¶
awsAccountIdThe identifier of the Amazon Web Services account where you want to list environment profiles.
awsAccountRegionThe Amazon Web Services region where you want to list environment profiles.
domainIdentifier[required] The identifier of the Amazon DataZone domain.
environmentBlueprintIdentifierThe identifier of the blueprint that was used to create the environment profiles that you want to list.
maxResultsThe 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 aNextTokenvalue that you can use in a subsequent call tolist_environment_profilesto list the next set of environment profiles.namenextTokenWhen the number of environment profiles is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of environment profiles, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_environment_profilesto list the next set of environment profiles.projectIdentifierThe 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"
)