List Field Level Encryption Configs
| cloudfront_list_field_level_encryption_configs | R Documentation |
List all field-level encryption configurations that have been created in CloudFront for this account¶
Description¶
List all field-level encryption configurations that have been created in CloudFront for this account.
Usage¶
Arguments¶
MarkerUse this when paginating results to indicate where to begin in your list of configurations. The results include configurations in the list that occur after the marker. To get the next page of results, set the
Markerto the value of theNextMarkerfrom the current page's response (which is also the ID of the last configuration on that page).MaxItemsThe maximum number of field-level encryption configurations you want in the response body.
Value¶
A list with the following syntax:
list(
FieldLevelEncryptionList = list(
NextMarker = "string",
MaxItems = 123,
Quantity = 123,
Items = list(
list(
Id = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
Comment = "string",
QueryArgProfileConfig = list(
ForwardWhenQueryArgProfileIsUnknown = TRUE|FALSE,
QueryArgProfiles = list(
Quantity = 123,
Items = list(
list(
QueryArg = "string",
ProfileId = "string"
)
)
)
),
ContentTypeProfileConfig = list(
ForwardWhenContentTypeIsUnknown = TRUE|FALSE,
ContentTypeProfiles = list(
Quantity = 123,
Items = list(
list(
Format = "URLEncoded",
ProfileId = "string",
ContentType = "string"
)
)
)
)
)
)
)
)