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¶
cloudfront_list_field_level_encryption_configs(Marker, MaxItems)
Arguments¶
Marker |
Use 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 |
MaxItems |
The 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"
)
)
)
)
)
)
)
)
Request syntax¶
svc$list_field_level_encryption_configs(
Marker = "string",
MaxItems = "string"
)