Class: Aws::CloudFront::Types::DistributionIdOwner

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

Overview

A structure that pairs a CloudFront distribution ID with its owning Amazon Web Services account ID.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#distribution_idString

The ID of the distribution.

Returns:

  • (String)


5009
5010
5011
5012
5013
5014
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 5009

class DistributionIdOwner < Struct.new(
  :distribution_id,
  :owner_account_id)
  SENSITIVE = []
  include Aws::Structure
end

#owner_account_idString

The ID of the Amazon Web Services account that owns the distribution.

Returns:

  • (String)


5009
5010
5011
5012
5013
5014
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 5009

class DistributionIdOwner < Struct.new(
  :distribution_id,
  :owner_account_id)
  SENSITIVE = []
  include Aws::Structure
end