Class: Aws::CloudFront::Types::FieldPatterns

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 FieldPatterns data as a hash:

{
  quantity: 1, # required
  items: ["string"],
}

A complex data type that includes the field patterns to match for field-level encryption.

Instance Attribute Summary collapse

Instance Attribute Details

#itemsArray<String>

An array of the field-level encryption field patterns.

Returns:

  • (Array<String>)


3931
3932
3933
3934
3935
# File 'lib/aws-sdk-cloudfront/types.rb', line 3931

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

#quantityInteger

The number of field-level encryption field patterns.

Returns:

  • (Integer)


3931
3932
3933
3934
3935
# File 'lib/aws-sdk-cloudfront/types.rb', line 3931

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