Class: Aws::CloudFront::Types::UpdateKeyGroupRequest

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

{
  key_group_config: { # required
    name: "string", # required
    items: ["string"], # required
    comment: "string",
  },
  id: "string", # required
  if_match: "string",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The identifier of the key group that you are updating.

Returns:

  • (String)


13234
13235
13236
13237
13238
13239
13240
# File 'lib/aws-sdk-cloudfront/types.rb', line 13234

class UpdateKeyGroupRequest < Struct.new(
  :key_group_config,
  :id,
  :if_match)
  SENSITIVE = []
  include Aws::Structure
end

#if_matchString

The version of the key group that you are updating. The version is the key group’s ‘ETag` value.

Returns:

  • (String)


13234
13235
13236
13237
13238
13239
13240
# File 'lib/aws-sdk-cloudfront/types.rb', line 13234

class UpdateKeyGroupRequest < Struct.new(
  :key_group_config,
  :id,
  :if_match)
  SENSITIVE = []
  include Aws::Structure
end

#key_group_configTypes::KeyGroupConfig

The key group configuration.



13234
13235
13236
13237
13238
13239
13240
# File 'lib/aws-sdk-cloudfront/types.rb', line 13234

class UpdateKeyGroupRequest < Struct.new(
  :key_group_config,
  :id,
  :if_match)
  SENSITIVE = []
  include Aws::Structure
end