Skip to content

Create Field Level Encryption Profile

cloudfront_create_field_level_encryption_profile R Documentation

Create a field-level encryption profile

Description

Create a field-level encryption profile.

Usage

cloudfront_create_field_level_encryption_profile(
  FieldLevelEncryptionProfileConfig)

Arguments

FieldLevelEncryptionProfileConfig

[required] The request to create a field-level encryption profile.

Value

A list with the following syntax:

list(
  FieldLevelEncryptionProfile = list(
    Id = "string",
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    FieldLevelEncryptionProfileConfig = list(
      Name = "string",
      CallerReference = "string",
      Comment = "string",
      EncryptionEntities = list(
        Quantity = 123,
        Items = list(
          list(
            PublicKeyId = "string",
            ProviderId = "string",
            FieldPatterns = list(
              Quantity = 123,
              Items = list(
                "string"
              )
            )
          )
        )
      )
    )
  ),
  Location = "string",
  ETag = "string"
)

Request syntax

svc$create_field_level_encryption_profile(
  FieldLevelEncryptionProfileConfig = list(
    Name = "string",
    CallerReference = "string",
    Comment = "string",
    EncryptionEntities = list(
      Quantity = 123,
      Items = list(
        list(
          PublicKeyId = "string",
          ProviderId = "string",
          FieldPatterns = list(
            Quantity = 123,
            Items = list(
              "string"
            )
          )
        )
      )
    )
  )
)