Skip to content

Get Field Level Encryption

cloudfront_get_field_level_encryption R Documentation

Get the field-level encryption configuration information

Description

Get the field-level encryption configuration information.

Usage

cloudfront_get_field_level_encryption(Id)

Arguments

Id

[required] Request the ID for the field-level encryption configuration information.

Value

A list with the following syntax:

list(
  FieldLevelEncryption = list(
    Id = "string",
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    FieldLevelEncryptionConfig = list(
      CallerReference = "string",
      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"
            )
          )
        )
      )
    )
  ),
  ETag = "string"
)

Request syntax

svc$get_field_level_encryption(
  Id = "string"
)