Class: Aws::CloudFront::Types::ContentTypeProfiles

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudfront/types.rb

Overview

Note:

When making an API call, you may pass ContentTypeProfiles data as a hash:

{
  quantity: 1, # required
  items: [
    {
      format: "URLEncoded", # required, accepts URLEncoded
      profile_id: "string",
      content_type: "string", # required
    },
  ],
}

Field-level encryption content type-profile.

Instance Attribute Summary collapse

Instance Attribute Details

#itemsArray<Types::ContentTypeProfile>

Items in a field-level encryption content type-profile mapping.

Returns:



839
840
841
842
843
# File 'lib/aws-sdk-cloudfront/types.rb', line 839

class ContentTypeProfiles < Struct.new(
  :quantity,
  :items)
  include Aws::Structure
end

#quantityInteger

The number of field-level encryption content type-profile mappings.

Returns:

  • (Integer)


839
840
841
842
843
# File 'lib/aws-sdk-cloudfront/types.rb', line 839

class ContentTypeProfiles < Struct.new(
  :quantity,
  :items)
  include Aws::Structure
end