Class: Aws::CloudFront::Types::Paths

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

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

A complex type that contains information about the objects that you want to invalidate. For more information, see [Specifying the Objects to Invalidate] in the *Amazon CloudFront Developer Guide*.

[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidation-specifying-objects

Instance Attribute Summary collapse

Instance Attribute Details

#itemsArray<String>

A complex type that contains a list of the paths that you want to invalidate.

Returns:

  • (Array<String>)


4443
4444
4445
4446
4447
# File 'lib/aws-sdk-cloudfront/types.rb', line 4443

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

#quantityInteger

The number of objects that you want to invalidate.

Returns:

  • (Integer)


4443
4444
4445
4446
4447
# File 'lib/aws-sdk-cloudfront/types.rb', line 4443

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