DistributionSummary

public struct DistributionSummary : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

    Declaration

    Swift

    public let aliases: Aliases
  • AWS services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they’ve added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions. For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with AWS services in China.

    Declaration

    Swift

    public let aliasICPRecordals: [AliasICPRecordal]?
  • arn

    The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your AWS account ID.

    Declaration

    Swift

    public let arn: String
  • A complex type that contains zero or more CacheBehavior elements.

    Declaration

    Swift

    public let cacheBehaviors: CacheBehaviors
  • The comment originally specified when this distribution was created.

    Declaration

    Swift

    public let comment: String
  • A complex type that contains zero or more CustomErrorResponses elements.

    Declaration

    Swift

    public let customErrorResponses: CustomErrorResponses
  • A complex type that describes the default cache behavior if you don’t specify a CacheBehavior element or if files don’t match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.

    Declaration

    Swift

    public let defaultCacheBehavior: DefaultCacheBehavior
  • The domain name that corresponds to the distribution, for example, d111111abcdef8.cloudfront.net.

    Declaration

    Swift

    public let domainName: String
  • Whether the distribution is enabled to accept user requests for content.

    Declaration

    Swift

    public let enabled: Bool
  • Specify the maximum HTTP version that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don’t support HTTP/2 will automatically use an earlier version.

    Declaration

    Swift

    public let httpVersion: HttpVersion
  • id

    The identifier for the distribution. For example: EDFDVBD632BHDS5.

    Declaration

    Swift

    public let id: String
  • Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for your distribution.

    Declaration

    Swift

    public let isIPV6Enabled: Bool
  • The date and time the distribution was last modified.

    Declaration

    Swift

    public let lastModifiedTime: TimeStamp
  • A complex type that contains information about origin groups for this distribution.

    Declaration

    Swift

    public let originGroups: OriginGroups?
  • A complex type that contains information about origins for this distribution.

    Declaration

    Swift

    public let origins: Origins
  • A complex type that contains information about price class for this streaming distribution.

    Declaration

    Swift

    public let priceClass: PriceClass
  • A complex type that identifies ways in which you want to restrict distribution of your content.

    Declaration

    Swift

    public let restrictions: Restrictions
  • The current status of the distribution. When the status is Deployed, the distribution’s information is propagated to all CloudFront edge locations.

    Declaration

    Swift

    public let status: String
  • A complex type that determines the distribution’s SSL/TLS configuration for communicating with viewers.

    Declaration

    Swift

    public let viewerCertificate: ViewerCertificate
  • The Web ACL Id (if any) associated with the distribution.

    Declaration

    Swift

    public let webACLId: String
  • Undocumented

    Declaration

    Swift

    public init(aliases: Aliases, aliasICPRecordals: [AliasICPRecordal]? = nil, arn: String, cacheBehaviors: CacheBehaviors, comment: String, customErrorResponses: CustomErrorResponses, defaultCacheBehavior: DefaultCacheBehavior, domainName: String, enabled: Bool, httpVersion: HttpVersion, id: String, isIPV6Enabled: Bool, lastModifiedTime: TimeStamp, originGroups: OriginGroups? = nil, origins: Origins, priceClass: PriceClass, restrictions: Restrictions, status: String, viewerCertificate: ViewerCertificate, webACLId: String)