Class: Aws::CloudFront::Types::QueryArgProfile

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

{
  query_arg: "string", # required
  profile_id: "string", # required
}

Query argument-profile mapping for field-level encryption.

Instance Attribute Summary collapse

Instance Attribute Details

#profile_idString

ID of profile to use for field-level encryption query argument-profile mapping

Returns:

  • (String)


6037
6038
6039
6040
6041
# File 'lib/aws-sdk-cloudfront/types.rb', line 6037

class QueryArgProfile < Struct.new(
  :query_arg,
  :profile_id)
  include Aws::Structure
end

#query_argString

Query argument for field-level encryption query argument-profile mapping.

Returns:

  • (String)


6037
6038
6039
6040
6041
# File 'lib/aws-sdk-cloudfront/types.rb', line 6037

class QueryArgProfile < Struct.new(
  :query_arg,
  :profile_id)
  include Aws::Structure
end