cloudfront - ActiveState ActiveGo 1.8
...

Package cloudfront

import "github.com/aws/aws-sdk-go/service/cloudfront"
Overview
Index
Examples
Subdirectories

Overview ▾

Package cloudfront provides the client and types for making API requests to Amazon CloudFront.

This is the Amazon CloudFront API Reference. This guide is for developers who need detailed information about the CloudFront API actions, data types, and errors. For detailed information about CloudFront features and their associated API calls, see the Amazon CloudFront Developer Guide.

See https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25 for more information on this service.

See cloudfront package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/cloudfront/

Using the Client

To use the client for Amazon CloudFront you will first need to create a new instance of it.

When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.

Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.

// Create a session to share configuration, and load external configuration.
sess := session.Must(session.NewSession())

// Create the service's client with the session.
svc := cloudfront.New(sess)

See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/

See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon CloudFront client CloudFront for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/cloudfront/#New

Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.

The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".

result, err := svc.CreateCloudFrontOriginAccessIdentity(params)
if err != nil {
    // Cast err to awserr.Error to handle specific error codes.
    aerr, ok := err.(awserr.Error)
    if ok && aerr.Code() == <error code to check for> {
        // Specific error code handling
    }
    return err
}

fmt.Println("CreateCloudFrontOriginAccessIdentity result:")
fmt.Println(result)

Using the Client with Context

The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.

ctx := context.Background()

result, err := svc.CreateCloudFrontOriginAccessIdentityWithContext(ctx, params)

See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/

Index ▾

Constants
type ActiveTrustedSigners
    func (s ActiveTrustedSigners) GoString() string
    func (s *ActiveTrustedSigners) SetEnabled(v bool) *ActiveTrustedSigners
    func (s *ActiveTrustedSigners) SetItems(v []*Signer) *ActiveTrustedSigners
    func (s *ActiveTrustedSigners) SetQuantity(v int64) *ActiveTrustedSigners
    func (s ActiveTrustedSigners) String() string
type Aliases
    func (s Aliases) GoString() string
    func (s *Aliases) SetItems(v []*string) *Aliases
    func (s *Aliases) SetQuantity(v int64) *Aliases
    func (s Aliases) String() string
    func (s *Aliases) Validate() error
type AllowedMethods
    func (s AllowedMethods) GoString() string
    func (s *AllowedMethods) SetCachedMethods(v *CachedMethods) *AllowedMethods
    func (s *AllowedMethods) SetItems(v []*string) *AllowedMethods
    func (s *AllowedMethods) SetQuantity(v int64) *AllowedMethods
    func (s AllowedMethods) String() string
    func (s *AllowedMethods) Validate() error
type CacheBehavior
    func (s CacheBehavior) GoString() string
    func (s *CacheBehavior) SetAllowedMethods(v *AllowedMethods) *CacheBehavior
    func (s *CacheBehavior) SetCompress(v bool) *CacheBehavior
    func (s *CacheBehavior) SetDefaultTTL(v int64) *CacheBehavior
    func (s *CacheBehavior) SetForwardedValues(v *ForwardedValues) *CacheBehavior
    func (s *CacheBehavior) SetLambdaFunctionAssociations(v *LambdaFunctionAssociations) *CacheBehavior
    func (s *CacheBehavior) SetMaxTTL(v int64) *CacheBehavior
    func (s *CacheBehavior) SetMinTTL(v int64) *CacheBehavior
    func (s *CacheBehavior) SetPathPattern(v string) *CacheBehavior
    func (s *CacheBehavior) SetSmoothStreaming(v bool) *CacheBehavior
    func (s *CacheBehavior) SetTargetOriginId(v string) *CacheBehavior
    func (s *CacheBehavior) SetTrustedSigners(v *TrustedSigners) *CacheBehavior
    func (s *CacheBehavior) SetViewerProtocolPolicy(v string) *CacheBehavior
    func (s CacheBehavior) String() string
    func (s *CacheBehavior) Validate() error
type CacheBehaviors
    func (s CacheBehaviors) GoString() string
    func (s *CacheBehaviors) SetItems(v []*CacheBehavior) *CacheBehaviors
    func (s *CacheBehaviors) SetQuantity(v int64) *CacheBehaviors
    func (s CacheBehaviors) String() string
    func (s *CacheBehaviors) Validate() error
type CachedMethods
    func (s CachedMethods) GoString() string
    func (s *CachedMethods) SetItems(v []*string) *CachedMethods
    func (s *CachedMethods) SetQuantity(v int64) *CachedMethods
    func (s CachedMethods) String() string
    func (s *CachedMethods) Validate() error
type CloudFront
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *CloudFront
    func (c *CloudFront) CreateCloudFrontOriginAccessIdentity(input *CreateCloudFrontOriginAccessIdentityInput) (*CreateCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) CreateCloudFrontOriginAccessIdentityRequest(input *CreateCloudFrontOriginAccessIdentityInput) (req *request.Request, output *CreateCloudFrontOriginAccessIdentityOutput)
    func (c *CloudFront) CreateCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *CreateCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*CreateCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) CreateDistribution(input *CreateDistributionInput) (*CreateDistributionOutput, error)
    func (c *CloudFront) CreateDistributionRequest(input *CreateDistributionInput) (req *request.Request, output *CreateDistributionOutput)
    func (c *CloudFront) CreateDistributionWithContext(ctx aws.Context, input *CreateDistributionInput, opts ...request.Option) (*CreateDistributionOutput, error)
    func (c *CloudFront) CreateDistributionWithTags(input *CreateDistributionWithTagsInput) (*CreateDistributionWithTagsOutput, error)
    func (c *CloudFront) CreateDistributionWithTagsRequest(input *CreateDistributionWithTagsInput) (req *request.Request, output *CreateDistributionWithTagsOutput)
    func (c *CloudFront) CreateDistributionWithTagsWithContext(ctx aws.Context, input *CreateDistributionWithTagsInput, opts ...request.Option) (*CreateDistributionWithTagsOutput, error)
    func (c *CloudFront) CreateInvalidation(input *CreateInvalidationInput) (*CreateInvalidationOutput, error)
    func (c *CloudFront) CreateInvalidationRequest(input *CreateInvalidationInput) (req *request.Request, output *CreateInvalidationOutput)
    func (c *CloudFront) CreateInvalidationWithContext(ctx aws.Context, input *CreateInvalidationInput, opts ...request.Option) (*CreateInvalidationOutput, error)
    func (c *CloudFront) CreateStreamingDistribution(input *CreateStreamingDistributionInput) (*CreateStreamingDistributionOutput, error)
    func (c *CloudFront) CreateStreamingDistributionRequest(input *CreateStreamingDistributionInput) (req *request.Request, output *CreateStreamingDistributionOutput)
    func (c *CloudFront) CreateStreamingDistributionWithContext(ctx aws.Context, input *CreateStreamingDistributionInput, opts ...request.Option) (*CreateStreamingDistributionOutput, error)
    func (c *CloudFront) CreateStreamingDistributionWithTags(input *CreateStreamingDistributionWithTagsInput) (*CreateStreamingDistributionWithTagsOutput, error)
    func (c *CloudFront) CreateStreamingDistributionWithTagsRequest(input *CreateStreamingDistributionWithTagsInput) (req *request.Request, output *CreateStreamingDistributionWithTagsOutput)
    func (c *CloudFront) CreateStreamingDistributionWithTagsWithContext(ctx aws.Context, input *CreateStreamingDistributionWithTagsInput, opts ...request.Option) (*CreateStreamingDistributionWithTagsOutput, error)
    func (c *CloudFront) DeleteCloudFrontOriginAccessIdentity(input *DeleteCloudFrontOriginAccessIdentityInput) (*DeleteCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) DeleteCloudFrontOriginAccessIdentityRequest(input *DeleteCloudFrontOriginAccessIdentityInput) (req *request.Request, output *DeleteCloudFrontOriginAccessIdentityOutput)
    func (c *CloudFront) DeleteCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *DeleteCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*DeleteCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) DeleteDistribution(input *DeleteDistributionInput) (*DeleteDistributionOutput, error)
    func (c *CloudFront) DeleteDistributionRequest(input *DeleteDistributionInput) (req *request.Request, output *DeleteDistributionOutput)
    func (c *CloudFront) DeleteDistributionWithContext(ctx aws.Context, input *DeleteDistributionInput, opts ...request.Option) (*DeleteDistributionOutput, error)
    func (c *CloudFront) DeleteStreamingDistribution(input *DeleteStreamingDistributionInput) (*DeleteStreamingDistributionOutput, error)
    func (c *CloudFront) DeleteStreamingDistributionRequest(input *DeleteStreamingDistributionInput) (req *request.Request, output *DeleteStreamingDistributionOutput)
    func (c *CloudFront) DeleteStreamingDistributionWithContext(ctx aws.Context, input *DeleteStreamingDistributionInput, opts ...request.Option) (*DeleteStreamingDistributionOutput, error)
    func (c *CloudFront) GetCloudFrontOriginAccessIdentity(input *GetCloudFrontOriginAccessIdentityInput) (*GetCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfig(input *GetCloudFrontOriginAccessIdentityConfigInput) (*GetCloudFrontOriginAccessIdentityConfigOutput, error)
    func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfigRequest(input *GetCloudFrontOriginAccessIdentityConfigInput) (req *request.Request, output *GetCloudFrontOriginAccessIdentityConfigOutput)
    func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfigWithContext(ctx aws.Context, input *GetCloudFrontOriginAccessIdentityConfigInput, opts ...request.Option) (*GetCloudFrontOriginAccessIdentityConfigOutput, error)
    func (c *CloudFront) GetCloudFrontOriginAccessIdentityRequest(input *GetCloudFrontOriginAccessIdentityInput) (req *request.Request, output *GetCloudFrontOriginAccessIdentityOutput)
    func (c *CloudFront) GetCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *GetCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*GetCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) GetDistribution(input *GetDistributionInput) (*GetDistributionOutput, error)
    func (c *CloudFront) GetDistributionConfig(input *GetDistributionConfigInput) (*GetDistributionConfigOutput, error)
    func (c *CloudFront) GetDistributionConfigRequest(input *GetDistributionConfigInput) (req *request.Request, output *GetDistributionConfigOutput)
    func (c *CloudFront) GetDistributionConfigWithContext(ctx aws.Context, input *GetDistributionConfigInput, opts ...request.Option) (*GetDistributionConfigOutput, error)
    func (c *CloudFront) GetDistributionRequest(input *GetDistributionInput) (req *request.Request, output *GetDistributionOutput)
    func (c *CloudFront) GetDistributionWithContext(ctx aws.Context, input *GetDistributionInput, opts ...request.Option) (*GetDistributionOutput, error)
    func (c *CloudFront) GetInvalidation(input *GetInvalidationInput) (*GetInvalidationOutput, error)
    func (c *CloudFront) GetInvalidationRequest(input *GetInvalidationInput) (req *request.Request, output *GetInvalidationOutput)
    func (c *CloudFront) GetInvalidationWithContext(ctx aws.Context, input *GetInvalidationInput, opts ...request.Option) (*GetInvalidationOutput, error)
    func (c *CloudFront) GetStreamingDistribution(input *GetStreamingDistributionInput) (*GetStreamingDistributionOutput, error)
    func (c *CloudFront) GetStreamingDistributionConfig(input *GetStreamingDistributionConfigInput) (*GetStreamingDistributionConfigOutput, error)
    func (c *CloudFront) GetStreamingDistributionConfigRequest(input *GetStreamingDistributionConfigInput) (req *request.Request, output *GetStreamingDistributionConfigOutput)
    func (c *CloudFront) GetStreamingDistributionConfigWithContext(ctx aws.Context, input *GetStreamingDistributionConfigInput, opts ...request.Option) (*GetStreamingDistributionConfigOutput, error)
    func (c *CloudFront) GetStreamingDistributionRequest(input *GetStreamingDistributionInput) (req *request.Request, output *GetStreamingDistributionOutput)
    func (c *CloudFront) GetStreamingDistributionWithContext(ctx aws.Context, input *GetStreamingDistributionInput, opts ...request.Option) (*GetStreamingDistributionOutput, error)
    func (c *CloudFront) ListCloudFrontOriginAccessIdentities(input *ListCloudFrontOriginAccessIdentitiesInput) (*ListCloudFrontOriginAccessIdentitiesOutput, error)
    func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesPages(input *ListCloudFrontOriginAccessIdentitiesInput, fn func(*ListCloudFrontOriginAccessIdentitiesOutput, bool) bool) error
    func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesPagesWithContext(ctx aws.Context, input *ListCloudFrontOriginAccessIdentitiesInput, fn func(*ListCloudFrontOriginAccessIdentitiesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesRequest(input *ListCloudFrontOriginAccessIdentitiesInput) (req *request.Request, output *ListCloudFrontOriginAccessIdentitiesOutput)
    func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesWithContext(ctx aws.Context, input *ListCloudFrontOriginAccessIdentitiesInput, opts ...request.Option) (*ListCloudFrontOriginAccessIdentitiesOutput, error)
    func (c *CloudFront) ListDistributions(input *ListDistributionsInput) (*ListDistributionsOutput, error)
    func (c *CloudFront) ListDistributionsByWebACLId(input *ListDistributionsByWebACLIdInput) (*ListDistributionsByWebACLIdOutput, error)
    func (c *CloudFront) ListDistributionsByWebACLIdRequest(input *ListDistributionsByWebACLIdInput) (req *request.Request, output *ListDistributionsByWebACLIdOutput)
    func (c *CloudFront) ListDistributionsByWebACLIdWithContext(ctx aws.Context, input *ListDistributionsByWebACLIdInput, opts ...request.Option) (*ListDistributionsByWebACLIdOutput, error)
    func (c *CloudFront) ListDistributionsPages(input *ListDistributionsInput, fn func(*ListDistributionsOutput, bool) bool) error
    func (c *CloudFront) ListDistributionsPagesWithContext(ctx aws.Context, input *ListDistributionsInput, fn func(*ListDistributionsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudFront) ListDistributionsRequest(input *ListDistributionsInput) (req *request.Request, output *ListDistributionsOutput)
    func (c *CloudFront) ListDistributionsWithContext(ctx aws.Context, input *ListDistributionsInput, opts ...request.Option) (*ListDistributionsOutput, error)
    func (c *CloudFront) ListInvalidations(input *ListInvalidationsInput) (*ListInvalidationsOutput, error)
    func (c *CloudFront) ListInvalidationsPages(input *ListInvalidationsInput, fn func(*ListInvalidationsOutput, bool) bool) error
    func (c *CloudFront) ListInvalidationsPagesWithContext(ctx aws.Context, input *ListInvalidationsInput, fn func(*ListInvalidationsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudFront) ListInvalidationsRequest(input *ListInvalidationsInput) (req *request.Request, output *ListInvalidationsOutput)
    func (c *CloudFront) ListInvalidationsWithContext(ctx aws.Context, input *ListInvalidationsInput, opts ...request.Option) (*ListInvalidationsOutput, error)
    func (c *CloudFront) ListStreamingDistributions(input *ListStreamingDistributionsInput) (*ListStreamingDistributionsOutput, error)
    func (c *CloudFront) ListStreamingDistributionsPages(input *ListStreamingDistributionsInput, fn func(*ListStreamingDistributionsOutput, bool) bool) error
    func (c *CloudFront) ListStreamingDistributionsPagesWithContext(ctx aws.Context, input *ListStreamingDistributionsInput, fn func(*ListStreamingDistributionsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudFront) ListStreamingDistributionsRequest(input *ListStreamingDistributionsInput) (req *request.Request, output *ListStreamingDistributionsOutput)
    func (c *CloudFront) ListStreamingDistributionsWithContext(ctx aws.Context, input *ListStreamingDistributionsInput, opts ...request.Option) (*ListStreamingDistributionsOutput, error)
    func (c *CloudFront) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)
    func (c *CloudFront) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)
    func (c *CloudFront) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)
    func (c *CloudFront) TagResource(input *TagResourceInput) (*TagResourceOutput, error)
    func (c *CloudFront) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)
    func (c *CloudFront) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)
    func (c *CloudFront) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)
    func (c *CloudFront) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)
    func (c *CloudFront) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)
    func (c *CloudFront) UpdateCloudFrontOriginAccessIdentity(input *UpdateCloudFrontOriginAccessIdentityInput) (*UpdateCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) UpdateCloudFrontOriginAccessIdentityRequest(input *UpdateCloudFrontOriginAccessIdentityInput) (req *request.Request, output *UpdateCloudFrontOriginAccessIdentityOutput)
    func (c *CloudFront) UpdateCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *UpdateCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*UpdateCloudFrontOriginAccessIdentityOutput, error)
    func (c *CloudFront) UpdateDistribution(input *UpdateDistributionInput) (*UpdateDistributionOutput, error)
    func (c *CloudFront) UpdateDistributionRequest(input *UpdateDistributionInput) (req *request.Request, output *UpdateDistributionOutput)
    func (c *CloudFront) UpdateDistributionWithContext(ctx aws.Context, input *UpdateDistributionInput, opts ...request.Option) (*UpdateDistributionOutput, error)
    func (c *CloudFront) UpdateStreamingDistribution(input *UpdateStreamingDistributionInput) (*UpdateStreamingDistributionOutput, error)
    func (c *CloudFront) UpdateStreamingDistributionRequest(input *UpdateStreamingDistributionInput) (req *request.Request, output *UpdateStreamingDistributionOutput)
    func (c *CloudFront) UpdateStreamingDistributionWithContext(ctx aws.Context, input *UpdateStreamingDistributionInput, opts ...request.Option) (*UpdateStreamingDistributionOutput, error)
    func (c *CloudFront) WaitUntilDistributionDeployed(input *GetDistributionInput) error
    func (c *CloudFront) WaitUntilDistributionDeployedWithContext(ctx aws.Context, input *GetDistributionInput, opts ...request.WaiterOption) error
    func (c *CloudFront) WaitUntilInvalidationCompleted(input *GetInvalidationInput) error
    func (c *CloudFront) WaitUntilInvalidationCompletedWithContext(ctx aws.Context, input *GetInvalidationInput, opts ...request.WaiterOption) error
    func (c *CloudFront) WaitUntilStreamingDistributionDeployed(input *GetStreamingDistributionInput) error
    func (c *CloudFront) WaitUntilStreamingDistributionDeployedWithContext(ctx aws.Context, input *GetStreamingDistributionInput, opts ...request.WaiterOption) error
type CookieNames
    func (s CookieNames) GoString() string
    func (s *CookieNames) SetItems(v []*string) *CookieNames
    func (s *CookieNames) SetQuantity(v int64) *CookieNames
    func (s CookieNames) String() string
    func (s *CookieNames) Validate() error
type CookiePreference
    func (s CookiePreference) GoString() string
    func (s *CookiePreference) SetForward(v string) *CookiePreference
    func (s *CookiePreference) SetWhitelistedNames(v *CookieNames) *CookiePreference
    func (s CookiePreference) String() string
    func (s *CookiePreference) Validate() error
type CreateCloudFrontOriginAccessIdentityInput
    func (s CreateCloudFrontOriginAccessIdentityInput) GoString() string
    func (s *CreateCloudFrontOriginAccessIdentityInput) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *CreateCloudFrontOriginAccessIdentityInput
    func (s CreateCloudFrontOriginAccessIdentityInput) String() string
    func (s *CreateCloudFrontOriginAccessIdentityInput) Validate() error
type CreateCloudFrontOriginAccessIdentityOutput
    func (s CreateCloudFrontOriginAccessIdentityOutput) GoString() string
    func (s *CreateCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity(v *OriginAccessIdentity) *CreateCloudFrontOriginAccessIdentityOutput
    func (s *CreateCloudFrontOriginAccessIdentityOutput) SetETag(v string) *CreateCloudFrontOriginAccessIdentityOutput
    func (s *CreateCloudFrontOriginAccessIdentityOutput) SetLocation(v string) *CreateCloudFrontOriginAccessIdentityOutput
    func (s CreateCloudFrontOriginAccessIdentityOutput) String() string
type CreateDistributionInput
    func (s CreateDistributionInput) GoString() string
    func (s *CreateDistributionInput) SetDistributionConfig(v *DistributionConfig) *CreateDistributionInput
    func (s CreateDistributionInput) String() string
    func (s *CreateDistributionInput) Validate() error
type CreateDistributionOutput
    func (s CreateDistributionOutput) GoString() string
    func (s *CreateDistributionOutput) SetDistribution(v *Distribution) *CreateDistributionOutput
    func (s *CreateDistributionOutput) SetETag(v string) *CreateDistributionOutput
    func (s *CreateDistributionOutput) SetLocation(v string) *CreateDistributionOutput
    func (s CreateDistributionOutput) String() string
type CreateDistributionWithTagsInput
    func (s CreateDistributionWithTagsInput) GoString() string
    func (s *CreateDistributionWithTagsInput) SetDistributionConfigWithTags(v *DistributionConfigWithTags) *CreateDistributionWithTagsInput
    func (s CreateDistributionWithTagsInput) String() string
    func (s *CreateDistributionWithTagsInput) Validate() error
type CreateDistributionWithTagsOutput
    func (s CreateDistributionWithTagsOutput) GoString() string
    func (s *CreateDistributionWithTagsOutput) SetDistribution(v *Distribution) *CreateDistributionWithTagsOutput
    func (s *CreateDistributionWithTagsOutput) SetETag(v string) *CreateDistributionWithTagsOutput
    func (s *CreateDistributionWithTagsOutput) SetLocation(v string) *CreateDistributionWithTagsOutput
    func (s CreateDistributionWithTagsOutput) String() string
type CreateInvalidationInput
    func (s CreateInvalidationInput) GoString() string
    func (s *CreateInvalidationInput) SetDistributionId(v string) *CreateInvalidationInput
    func (s *CreateInvalidationInput) SetInvalidationBatch(v *InvalidationBatch) *CreateInvalidationInput
    func (s CreateInvalidationInput) String() string
    func (s *CreateInvalidationInput) Validate() error
type CreateInvalidationOutput
    func (s CreateInvalidationOutput) GoString() string
    func (s *CreateInvalidationOutput) SetInvalidation(v *Invalidation) *CreateInvalidationOutput
    func (s *CreateInvalidationOutput) SetLocation(v string) *CreateInvalidationOutput
    func (s CreateInvalidationOutput) String() string
type CreateStreamingDistributionInput
    func (s CreateStreamingDistributionInput) GoString() string
    func (s *CreateStreamingDistributionInput) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *CreateStreamingDistributionInput
    func (s CreateStreamingDistributionInput) String() string
    func (s *CreateStreamingDistributionInput) Validate() error
type CreateStreamingDistributionOutput
    func (s CreateStreamingDistributionOutput) GoString() string
    func (s *CreateStreamingDistributionOutput) SetETag(v string) *CreateStreamingDistributionOutput
    func (s *CreateStreamingDistributionOutput) SetLocation(v string) *CreateStreamingDistributionOutput
    func (s *CreateStreamingDistributionOutput) SetStreamingDistribution(v *StreamingDistribution) *CreateStreamingDistributionOutput
    func (s CreateStreamingDistributionOutput) String() string
type CreateStreamingDistributionWithTagsInput
    func (s CreateStreamingDistributionWithTagsInput) GoString() string
    func (s *CreateStreamingDistributionWithTagsInput) SetStreamingDistributionConfigWithTags(v *StreamingDistributionConfigWithTags) *CreateStreamingDistributionWithTagsInput
    func (s CreateStreamingDistributionWithTagsInput) String() string
    func (s *CreateStreamingDistributionWithTagsInput) Validate() error
type CreateStreamingDistributionWithTagsOutput
    func (s CreateStreamingDistributionWithTagsOutput) GoString() string
    func (s *CreateStreamingDistributionWithTagsOutput) SetETag(v string) *CreateStreamingDistributionWithTagsOutput
    func (s *CreateStreamingDistributionWithTagsOutput) SetLocation(v string) *CreateStreamingDistributionWithTagsOutput
    func (s *CreateStreamingDistributionWithTagsOutput) SetStreamingDistribution(v *StreamingDistribution) *CreateStreamingDistributionWithTagsOutput
    func (s CreateStreamingDistributionWithTagsOutput) String() string
type CustomErrorResponse
    func (s CustomErrorResponse) GoString() string
    func (s *CustomErrorResponse) SetErrorCachingMinTTL(v int64) *CustomErrorResponse
    func (s *CustomErrorResponse) SetErrorCode(v int64) *CustomErrorResponse
    func (s *CustomErrorResponse) SetResponseCode(v string) *CustomErrorResponse
    func (s *CustomErrorResponse) SetResponsePagePath(v string) *CustomErrorResponse
    func (s CustomErrorResponse) String() string
    func (s *CustomErrorResponse) Validate() error
type CustomErrorResponses
    func (s CustomErrorResponses) GoString() string
    func (s *CustomErrorResponses) SetItems(v []*CustomErrorResponse) *CustomErrorResponses
    func (s *CustomErrorResponses) SetQuantity(v int64) *CustomErrorResponses
    func (s CustomErrorResponses) String() string
    func (s *CustomErrorResponses) Validate() error
type CustomHeaders
    func (s CustomHeaders) GoString() string
    func (s *CustomHeaders) SetItems(v []*OriginCustomHeader) *CustomHeaders
    func (s *CustomHeaders) SetQuantity(v int64) *CustomHeaders
    func (s CustomHeaders) String() string
    func (s *CustomHeaders) Validate() error
type CustomOriginConfig
    func (s CustomOriginConfig) GoString() string
    func (s *CustomOriginConfig) SetHTTPPort(v int64) *CustomOriginConfig
    func (s *CustomOriginConfig) SetHTTPSPort(v int64) *CustomOriginConfig
    func (s *CustomOriginConfig) SetOriginKeepaliveTimeout(v int64) *CustomOriginConfig
    func (s *CustomOriginConfig) SetOriginProtocolPolicy(v string) *CustomOriginConfig
    func (s *CustomOriginConfig) SetOriginReadTimeout(v int64) *CustomOriginConfig
    func (s *CustomOriginConfig) SetOriginSslProtocols(v *OriginSslProtocols) *CustomOriginConfig
    func (s CustomOriginConfig) String() string
    func (s *CustomOriginConfig) Validate() error
type DefaultCacheBehavior
    func (s DefaultCacheBehavior) GoString() string
    func (s *DefaultCacheBehavior) SetAllowedMethods(v *AllowedMethods) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetCompress(v bool) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetDefaultTTL(v int64) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetForwardedValues(v *ForwardedValues) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetLambdaFunctionAssociations(v *LambdaFunctionAssociations) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetMaxTTL(v int64) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetMinTTL(v int64) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetSmoothStreaming(v bool) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetTargetOriginId(v string) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetTrustedSigners(v *TrustedSigners) *DefaultCacheBehavior
    func (s *DefaultCacheBehavior) SetViewerProtocolPolicy(v string) *DefaultCacheBehavior
    func (s DefaultCacheBehavior) String() string
    func (s *DefaultCacheBehavior) Validate() error
type DeleteCloudFrontOriginAccessIdentityInput
    func (s DeleteCloudFrontOriginAccessIdentityInput) GoString() string
    func (s *DeleteCloudFrontOriginAccessIdentityInput) SetId(v string) *DeleteCloudFrontOriginAccessIdentityInput
    func (s *DeleteCloudFrontOriginAccessIdentityInput) SetIfMatch(v string) *DeleteCloudFrontOriginAccessIdentityInput
    func (s DeleteCloudFrontOriginAccessIdentityInput) String() string
    func (s *DeleteCloudFrontOriginAccessIdentityInput) Validate() error
type DeleteCloudFrontOriginAccessIdentityOutput
    func (s DeleteCloudFrontOriginAccessIdentityOutput) GoString() string
    func (s DeleteCloudFrontOriginAccessIdentityOutput) String() string
type DeleteDistributionInput
    func (s DeleteDistributionInput) GoString() string
    func (s *DeleteDistributionInput) SetId(v string) *DeleteDistributionInput
    func (s *DeleteDistributionInput) SetIfMatch(v string) *DeleteDistributionInput
    func (s DeleteDistributionInput) String() string
    func (s *DeleteDistributionInput) Validate() error
type DeleteDistributionOutput
    func (s DeleteDistributionOutput) GoString() string
    func (s DeleteDistributionOutput) String() string
type DeleteStreamingDistributionInput
    func (s DeleteStreamingDistributionInput) GoString() string
    func (s *DeleteStreamingDistributionInput) SetId(v string) *DeleteStreamingDistributionInput
    func (s *DeleteStreamingDistributionInput) SetIfMatch(v string) *DeleteStreamingDistributionInput
    func (s DeleteStreamingDistributionInput) String() string
    func (s *DeleteStreamingDistributionInput) Validate() error
type DeleteStreamingDistributionOutput
    func (s DeleteStreamingDistributionOutput) GoString() string
    func (s DeleteStreamingDistributionOutput) String() string
type Distribution
    func (s Distribution) GoString() string
    func (s *Distribution) SetARN(v string) *Distribution
    func (s *Distribution) SetActiveTrustedSigners(v *ActiveTrustedSigners) *Distribution
    func (s *Distribution) SetDistributionConfig(v *DistributionConfig) *Distribution
    func (s *Distribution) SetDomainName(v string) *Distribution
    func (s *Distribution) SetId(v string) *Distribution
    func (s *Distribution) SetInProgressInvalidationBatches(v int64) *Distribution
    func (s *Distribution) SetLastModifiedTime(v time.Time) *Distribution
    func (s *Distribution) SetStatus(v string) *Distribution
    func (s Distribution) String() string
type DistributionConfig
    func (s DistributionConfig) GoString() string
    func (s *DistributionConfig) SetAliases(v *Aliases) *DistributionConfig
    func (s *DistributionConfig) SetCacheBehaviors(v *CacheBehaviors) *DistributionConfig
    func (s *DistributionConfig) SetCallerReference(v string) *DistributionConfig
    func (s *DistributionConfig) SetComment(v string) *DistributionConfig
    func (s *DistributionConfig) SetCustomErrorResponses(v *CustomErrorResponses) *DistributionConfig
    func (s *DistributionConfig) SetDefaultCacheBehavior(v *DefaultCacheBehavior) *DistributionConfig
    func (s *DistributionConfig) SetDefaultRootObject(v string) *DistributionConfig
    func (s *DistributionConfig) SetEnabled(v bool) *DistributionConfig
    func (s *DistributionConfig) SetHttpVersion(v string) *DistributionConfig
    func (s *DistributionConfig) SetIsIPV6Enabled(v bool) *DistributionConfig
    func (s *DistributionConfig) SetLogging(v *LoggingConfig) *DistributionConfig
    func (s *DistributionConfig) SetOrigins(v *Origins) *DistributionConfig
    func (s *DistributionConfig) SetPriceClass(v string) *DistributionConfig
    func (s *DistributionConfig) SetRestrictions(v *Restrictions) *DistributionConfig
    func (s *DistributionConfig) SetViewerCertificate(v *ViewerCertificate) *DistributionConfig
    func (s *DistributionConfig) SetWebACLId(v string) *DistributionConfig
    func (s DistributionConfig) String() string
    func (s *DistributionConfig) Validate() error
type DistributionConfigWithTags
    func (s DistributionConfigWithTags) GoString() string
    func (s *DistributionConfigWithTags) SetDistributionConfig(v *DistributionConfig) *DistributionConfigWithTags
    func (s *DistributionConfigWithTags) SetTags(v *Tags) *DistributionConfigWithTags
    func (s DistributionConfigWithTags) String() string
    func (s *DistributionConfigWithTags) Validate() error
type DistributionList
    func (s DistributionList) GoString() string
    func (s *DistributionList) SetIsTruncated(v bool) *DistributionList
    func (s *DistributionList) SetItems(v []*DistributionSummary) *DistributionList
    func (s *DistributionList) SetMarker(v string) *DistributionList
    func (s *DistributionList) SetMaxItems(v int64) *DistributionList
    func (s *DistributionList) SetNextMarker(v string) *DistributionList
    func (s *DistributionList) SetQuantity(v int64) *DistributionList
    func (s DistributionList) String() string
type DistributionSummary
    func (s DistributionSummary) GoString() string
    func (s *DistributionSummary) SetARN(v string) *DistributionSummary
    func (s *DistributionSummary) SetAliases(v *Aliases) *DistributionSummary
    func (s *DistributionSummary) SetCacheBehaviors(v *CacheBehaviors) *DistributionSummary
    func (s *DistributionSummary) SetComment(v string) *DistributionSummary
    func (s *DistributionSummary) SetCustomErrorResponses(v *CustomErrorResponses) *DistributionSummary
    func (s *DistributionSummary) SetDefaultCacheBehavior(v *DefaultCacheBehavior) *DistributionSummary
    func (s *DistributionSummary) SetDomainName(v string) *DistributionSummary
    func (s *DistributionSummary) SetEnabled(v bool) *DistributionSummary
    func (s *DistributionSummary) SetHttpVersion(v string) *DistributionSummary
    func (s *DistributionSummary) SetId(v string) *DistributionSummary
    func (s *DistributionSummary) SetIsIPV6Enabled(v bool) *DistributionSummary
    func (s *DistributionSummary) SetLastModifiedTime(v time.Time) *DistributionSummary
    func (s *DistributionSummary) SetOrigins(v *Origins) *DistributionSummary
    func (s *DistributionSummary) SetPriceClass(v string) *DistributionSummary
    func (s *DistributionSummary) SetRestrictions(v *Restrictions) *DistributionSummary
    func (s *DistributionSummary) SetStatus(v string) *DistributionSummary
    func (s *DistributionSummary) SetViewerCertificate(v *ViewerCertificate) *DistributionSummary
    func (s *DistributionSummary) SetWebACLId(v string) *DistributionSummary
    func (s DistributionSummary) String() string
type ForwardedValues
    func (s ForwardedValues) GoString() string
    func (s *ForwardedValues) SetCookies(v *CookiePreference) *ForwardedValues
    func (s *ForwardedValues) SetHeaders(v *Headers) *ForwardedValues
    func (s *ForwardedValues) SetQueryString(v bool) *ForwardedValues
    func (s *ForwardedValues) SetQueryStringCacheKeys(v *QueryStringCacheKeys) *ForwardedValues
    func (s ForwardedValues) String() string
    func (s *ForwardedValues) Validate() error
type GeoRestriction
    func (s GeoRestriction) GoString() string
    func (s *GeoRestriction) SetItems(v []*string) *GeoRestriction
    func (s *GeoRestriction) SetQuantity(v int64) *GeoRestriction
    func (s *GeoRestriction) SetRestrictionType(v string) *GeoRestriction
    func (s GeoRestriction) String() string
    func (s *GeoRestriction) Validate() error
type GetCloudFrontOriginAccessIdentityConfigInput
    func (s GetCloudFrontOriginAccessIdentityConfigInput) GoString() string
    func (s *GetCloudFrontOriginAccessIdentityConfigInput) SetId(v string) *GetCloudFrontOriginAccessIdentityConfigInput
    func (s GetCloudFrontOriginAccessIdentityConfigInput) String() string
    func (s *GetCloudFrontOriginAccessIdentityConfigInput) Validate() error
type GetCloudFrontOriginAccessIdentityConfigOutput
    func (s GetCloudFrontOriginAccessIdentityConfigOutput) GoString() string
    func (s *GetCloudFrontOriginAccessIdentityConfigOutput) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *GetCloudFrontOriginAccessIdentityConfigOutput
    func (s *GetCloudFrontOriginAccessIdentityConfigOutput) SetETag(v string) *GetCloudFrontOriginAccessIdentityConfigOutput
    func (s GetCloudFrontOriginAccessIdentityConfigOutput) String() string
type GetCloudFrontOriginAccessIdentityInput
    func (s GetCloudFrontOriginAccessIdentityInput) GoString() string
    func (s *GetCloudFrontOriginAccessIdentityInput) SetId(v string) *GetCloudFrontOriginAccessIdentityInput
    func (s GetCloudFrontOriginAccessIdentityInput) String() string
    func (s *GetCloudFrontOriginAccessIdentityInput) Validate() error
type GetCloudFrontOriginAccessIdentityOutput
    func (s GetCloudFrontOriginAccessIdentityOutput) GoString() string
    func (s *GetCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity(v *OriginAccessIdentity) *GetCloudFrontOriginAccessIdentityOutput
    func (s *GetCloudFrontOriginAccessIdentityOutput) SetETag(v string) *GetCloudFrontOriginAccessIdentityOutput
    func (s GetCloudFrontOriginAccessIdentityOutput) String() string
type GetDistributionConfigInput
    func (s GetDistributionConfigInput) GoString() string
    func (s *GetDistributionConfigInput) SetId(v string) *GetDistributionConfigInput
    func (s GetDistributionConfigInput) String() string
    func (s *GetDistributionConfigInput) Validate() error
type GetDistributionConfigOutput
    func (s GetDistributionConfigOutput) GoString() string
    func (s *GetDistributionConfigOutput) SetDistributionConfig(v *DistributionConfig) *GetDistributionConfigOutput
    func (s *GetDistributionConfigOutput) SetETag(v string) *GetDistributionConfigOutput
    func (s GetDistributionConfigOutput) String() string
type GetDistributionInput
    func (s GetDistributionInput) GoString() string
    func (s *GetDistributionInput) SetId(v string) *GetDistributionInput
    func (s GetDistributionInput) String() string
    func (s *GetDistributionInput) Validate() error
type GetDistributionOutput
    func (s GetDistributionOutput) GoString() string
    func (s *GetDistributionOutput) SetDistribution(v *Distribution) *GetDistributionOutput
    func (s *GetDistributionOutput) SetETag(v string) *GetDistributionOutput
    func (s GetDistributionOutput) String() string
type GetInvalidationInput
    func (s GetInvalidationInput) GoString() string
    func (s *GetInvalidationInput) SetDistributionId(v string) *GetInvalidationInput
    func (s *GetInvalidationInput) SetId(v string) *GetInvalidationInput
    func (s GetInvalidationInput) String() string
    func (s *GetInvalidationInput) Validate() error
type GetInvalidationOutput
    func (s GetInvalidationOutput) GoString() string
    func (s *GetInvalidationOutput) SetInvalidation(v *Invalidation) *GetInvalidationOutput
    func (s GetInvalidationOutput) String() string
type GetStreamingDistributionConfigInput
    func (s GetStreamingDistributionConfigInput) GoString() string
    func (s *GetStreamingDistributionConfigInput) SetId(v string) *GetStreamingDistributionConfigInput
    func (s GetStreamingDistributionConfigInput) String() string
    func (s *GetStreamingDistributionConfigInput) Validate() error
type GetStreamingDistributionConfigOutput
    func (s GetStreamingDistributionConfigOutput) GoString() string
    func (s *GetStreamingDistributionConfigOutput) SetETag(v string) *GetStreamingDistributionConfigOutput
    func (s *GetStreamingDistributionConfigOutput) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *GetStreamingDistributionConfigOutput
    func (s GetStreamingDistributionConfigOutput) String() string
type GetStreamingDistributionInput
    func (s GetStreamingDistributionInput) GoString() string
    func (s *GetStreamingDistributionInput) SetId(v string) *GetStreamingDistributionInput
    func (s GetStreamingDistributionInput) String() string
    func (s *GetStreamingDistributionInput) Validate() error
type GetStreamingDistributionOutput
    func (s GetStreamingDistributionOutput) GoString() string
    func (s *GetStreamingDistributionOutput) SetETag(v string) *GetStreamingDistributionOutput
    func (s *GetStreamingDistributionOutput) SetStreamingDistribution(v *StreamingDistribution) *GetStreamingDistributionOutput
    func (s GetStreamingDistributionOutput) String() string
type Headers
    func (s Headers) GoString() string
    func (s *Headers) SetItems(v []*string) *Headers
    func (s *Headers) SetQuantity(v int64) *Headers
    func (s Headers) String() string
    func (s *Headers) Validate() error
type Invalidation
    func (s Invalidation) GoString() string
    func (s *Invalidation) SetCreateTime(v time.Time) *Invalidation
    func (s *Invalidation) SetId(v string) *Invalidation
    func (s *Invalidation) SetInvalidationBatch(v *InvalidationBatch) *Invalidation
    func (s *Invalidation) SetStatus(v string) *Invalidation
    func (s Invalidation) String() string
type InvalidationBatch
    func (s InvalidationBatch) GoString() string
    func (s *InvalidationBatch) SetCallerReference(v string) *InvalidationBatch
    func (s *InvalidationBatch) SetPaths(v *Paths) *InvalidationBatch
    func (s InvalidationBatch) String() string
    func (s *InvalidationBatch) Validate() error
type InvalidationList
    func (s InvalidationList) GoString() string
    func (s *InvalidationList) SetIsTruncated(v bool) *InvalidationList
    func (s *InvalidationList) SetItems(v []*InvalidationSummary) *InvalidationList
    func (s *InvalidationList) SetMarker(v string) *InvalidationList
    func (s *InvalidationList) SetMaxItems(v int64) *InvalidationList
    func (s *InvalidationList) SetNextMarker(v string) *InvalidationList
    func (s *InvalidationList) SetQuantity(v int64) *InvalidationList
    func (s InvalidationList) String() string
type InvalidationSummary
    func (s InvalidationSummary) GoString() string
    func (s *InvalidationSummary) SetCreateTime(v time.Time) *InvalidationSummary
    func (s *InvalidationSummary) SetId(v string) *InvalidationSummary
    func (s *InvalidationSummary) SetStatus(v string) *InvalidationSummary
    func (s InvalidationSummary) String() string
type KeyPairIds
    func (s KeyPairIds) GoString() string
    func (s *KeyPairIds) SetItems(v []*string) *KeyPairIds
    func (s *KeyPairIds) SetQuantity(v int64) *KeyPairIds
    func (s KeyPairIds) String() string
type LambdaFunctionAssociation
    func (s LambdaFunctionAssociation) GoString() string
    func (s *LambdaFunctionAssociation) SetEventType(v string) *LambdaFunctionAssociation
    func (s *LambdaFunctionAssociation) SetLambdaFunctionARN(v string) *LambdaFunctionAssociation
    func (s LambdaFunctionAssociation) String() string
type LambdaFunctionAssociations
    func (s LambdaFunctionAssociations) GoString() string
    func (s *LambdaFunctionAssociations) SetItems(v []*LambdaFunctionAssociation) *LambdaFunctionAssociations
    func (s *LambdaFunctionAssociations) SetQuantity(v int64) *LambdaFunctionAssociations
    func (s LambdaFunctionAssociations) String() string
    func (s *LambdaFunctionAssociations) Validate() error
type ListCloudFrontOriginAccessIdentitiesInput
    func (s ListCloudFrontOriginAccessIdentitiesInput) GoString() string
    func (s *ListCloudFrontOriginAccessIdentitiesInput) SetMarker(v string) *ListCloudFrontOriginAccessIdentitiesInput
    func (s *ListCloudFrontOriginAccessIdentitiesInput) SetMaxItems(v int64) *ListCloudFrontOriginAccessIdentitiesInput
    func (s ListCloudFrontOriginAccessIdentitiesInput) String() string
type ListCloudFrontOriginAccessIdentitiesOutput
    func (s ListCloudFrontOriginAccessIdentitiesOutput) GoString() string
    func (s *ListCloudFrontOriginAccessIdentitiesOutput) SetCloudFrontOriginAccessIdentityList(v *OriginAccessIdentityList) *ListCloudFrontOriginAccessIdentitiesOutput
    func (s ListCloudFrontOriginAccessIdentitiesOutput) String() string
type ListDistributionsByWebACLIdInput
    func (s ListDistributionsByWebACLIdInput) GoString() string
    func (s *ListDistributionsByWebACLIdInput) SetMarker(v string) *ListDistributionsByWebACLIdInput
    func (s *ListDistributionsByWebACLIdInput) SetMaxItems(v int64) *ListDistributionsByWebACLIdInput
    func (s *ListDistributionsByWebACLIdInput) SetWebACLId(v string) *ListDistributionsByWebACLIdInput
    func (s ListDistributionsByWebACLIdInput) String() string
    func (s *ListDistributionsByWebACLIdInput) Validate() error
type ListDistributionsByWebACLIdOutput
    func (s ListDistributionsByWebACLIdOutput) GoString() string
    func (s *ListDistributionsByWebACLIdOutput) SetDistributionList(v *DistributionList) *ListDistributionsByWebACLIdOutput
    func (s ListDistributionsByWebACLIdOutput) String() string
type ListDistributionsInput
    func (s ListDistributionsInput) GoString() string
    func (s *ListDistributionsInput) SetMarker(v string) *ListDistributionsInput
    func (s *ListDistributionsInput) SetMaxItems(v int64) *ListDistributionsInput
    func (s ListDistributionsInput) String() string
type ListDistributionsOutput
    func (s ListDistributionsOutput) GoString() string
    func (s *ListDistributionsOutput) SetDistributionList(v *DistributionList) *ListDistributionsOutput
    func (s ListDistributionsOutput) String() string
type ListInvalidationsInput
    func (s ListInvalidationsInput) GoString() string
    func (s *ListInvalidationsInput) SetDistributionId(v string) *ListInvalidationsInput
    func (s *ListInvalidationsInput) SetMarker(v string) *ListInvalidationsInput
    func (s *ListInvalidationsInput) SetMaxItems(v int64) *ListInvalidationsInput
    func (s ListInvalidationsInput) String() string
    func (s *ListInvalidationsInput) Validate() error
type ListInvalidationsOutput
    func (s ListInvalidationsOutput) GoString() string
    func (s *ListInvalidationsOutput) SetInvalidationList(v *InvalidationList) *ListInvalidationsOutput
    func (s ListInvalidationsOutput) String() string
type ListStreamingDistributionsInput
    func (s ListStreamingDistributionsInput) GoString() string
    func (s *ListStreamingDistributionsInput) SetMarker(v string) *ListStreamingDistributionsInput
    func (s *ListStreamingDistributionsInput) SetMaxItems(v int64) *ListStreamingDistributionsInput
    func (s ListStreamingDistributionsInput) String() string
type ListStreamingDistributionsOutput
    func (s ListStreamingDistributionsOutput) GoString() string
    func (s *ListStreamingDistributionsOutput) SetStreamingDistributionList(v *StreamingDistributionList) *ListStreamingDistributionsOutput
    func (s ListStreamingDistributionsOutput) String() string
type ListTagsForResourceInput
    func (s ListTagsForResourceInput) GoString() string
    func (s *ListTagsForResourceInput) SetResource(v string) *ListTagsForResourceInput
    func (s ListTagsForResourceInput) String() string
    func (s *ListTagsForResourceInput) Validate() error
type ListTagsForResourceOutput
    func (s ListTagsForResourceOutput) GoString() string
    func (s *ListTagsForResourceOutput) SetTags(v *Tags) *ListTagsForResourceOutput
    func (s ListTagsForResourceOutput) String() string
type LoggingConfig
    func (s LoggingConfig) GoString() string
    func (s *LoggingConfig) SetBucket(v string) *LoggingConfig
    func (s *LoggingConfig) SetEnabled(v bool) *LoggingConfig
    func (s *LoggingConfig) SetIncludeCookies(v bool) *LoggingConfig
    func (s *LoggingConfig) SetPrefix(v string) *LoggingConfig
    func (s LoggingConfig) String() string
    func (s *LoggingConfig) Validate() error
type Origin
    func (s Origin) GoString() string
    func (s *Origin) SetCustomHeaders(v *CustomHeaders) *Origin
    func (s *Origin) SetCustomOriginConfig(v *CustomOriginConfig) *Origin
    func (s *Origin) SetDomainName(v string) *Origin
    func (s *Origin) SetId(v string) *Origin
    func (s *Origin) SetOriginPath(v string) *Origin
    func (s *Origin) SetS3OriginConfig(v *S3OriginConfig) *Origin
    func (s Origin) String() string
    func (s *Origin) Validate() error
type OriginAccessIdentity
    func (s OriginAccessIdentity) GoString() string
    func (s *OriginAccessIdentity) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *OriginAccessIdentity
    func (s *OriginAccessIdentity) SetId(v string) *OriginAccessIdentity
    func (s *OriginAccessIdentity) SetS3CanonicalUserId(v string) *OriginAccessIdentity
    func (s OriginAccessIdentity) String() string
type OriginAccessIdentityConfig
    func (s OriginAccessIdentityConfig) GoString() string
    func (s *OriginAccessIdentityConfig) SetCallerReference(v string) *OriginAccessIdentityConfig
    func (s *OriginAccessIdentityConfig) SetComment(v string) *OriginAccessIdentityConfig
    func (s OriginAccessIdentityConfig) String() string
    func (s *OriginAccessIdentityConfig) Validate() error
type OriginAccessIdentityList
    func (s OriginAccessIdentityList) GoString() string
    func (s *OriginAccessIdentityList) SetIsTruncated(v bool) *OriginAccessIdentityList
    func (s *OriginAccessIdentityList) SetItems(v []*OriginAccessIdentitySummary) *OriginAccessIdentityList
    func (s *OriginAccessIdentityList) SetMarker(v string) *OriginAccessIdentityList
    func (s *OriginAccessIdentityList) SetMaxItems(v int64) *OriginAccessIdentityList
    func (s *OriginAccessIdentityList) SetNextMarker(v string) *OriginAccessIdentityList
    func (s *OriginAccessIdentityList) SetQuantity(v int64) *OriginAccessIdentityList
    func (s OriginAccessIdentityList) String() string
type OriginAccessIdentitySummary
    func (s OriginAccessIdentitySummary) GoString() string
    func (s *OriginAccessIdentitySummary) SetComment(v string) *OriginAccessIdentitySummary
    func (s *OriginAccessIdentitySummary) SetId(v string) *OriginAccessIdentitySummary
    func (s *OriginAccessIdentitySummary) SetS3CanonicalUserId(v string) *OriginAccessIdentitySummary
    func (s OriginAccessIdentitySummary) String() string
type OriginCustomHeader
    func (s OriginCustomHeader) GoString() string
    func (s *OriginCustomHeader) SetHeaderName(v string) *OriginCustomHeader
    func (s *OriginCustomHeader) SetHeaderValue(v string) *OriginCustomHeader
    func (s OriginCustomHeader) String() string
    func (s *OriginCustomHeader) Validate() error
type OriginSslProtocols
    func (s OriginSslProtocols) GoString() string
    func (s *OriginSslProtocols) SetItems(v []*string) *OriginSslProtocols
    func (s *OriginSslProtocols) SetQuantity(v int64) *OriginSslProtocols
    func (s OriginSslProtocols) String() string
    func (s *OriginSslProtocols) Validate() error
type Origins
    func (s Origins) GoString() string
    func (s *Origins) SetItems(v []*Origin) *Origins
    func (s *Origins) SetQuantity(v int64) *Origins
    func (s Origins) String() string
    func (s *Origins) Validate() error
type Paths
    func (s Paths) GoString() string
    func (s *Paths) SetItems(v []*string) *Paths
    func (s *Paths) SetQuantity(v int64) *Paths
    func (s Paths) String() string
    func (s *Paths) Validate() error
type QueryStringCacheKeys
    func (s QueryStringCacheKeys) GoString() string
    func (s *QueryStringCacheKeys) SetItems(v []*string) *QueryStringCacheKeys
    func (s *QueryStringCacheKeys) SetQuantity(v int64) *QueryStringCacheKeys
    func (s QueryStringCacheKeys) String() string
    func (s *QueryStringCacheKeys) Validate() error
type Restrictions
    func (s Restrictions) GoString() string
    func (s *Restrictions) SetGeoRestriction(v *GeoRestriction) *Restrictions
    func (s Restrictions) String() string
    func (s *Restrictions) Validate() error
type S3Origin
    func (s S3Origin) GoString() string
    func (s *S3Origin) SetDomainName(v string) *S3Origin
    func (s *S3Origin) SetOriginAccessIdentity(v string) *S3Origin
    func (s S3Origin) String() string
    func (s *S3Origin) Validate() error
type S3OriginConfig
    func (s S3OriginConfig) GoString() string
    func (s *S3OriginConfig) SetOriginAccessIdentity(v string) *S3OriginConfig
    func (s S3OriginConfig) String() string
    func (s *S3OriginConfig) Validate() error
type Signer
    func (s Signer) GoString() string
    func (s *Signer) SetAwsAccountNumber(v string) *Signer
    func (s *Signer) SetKeyPairIds(v *KeyPairIds) *Signer
    func (s Signer) String() string
type StreamingDistribution
    func (s StreamingDistribution) GoString() string
    func (s *StreamingDistribution) SetARN(v string) *StreamingDistribution
    func (s *StreamingDistribution) SetActiveTrustedSigners(v *ActiveTrustedSigners) *StreamingDistribution
    func (s *StreamingDistribution) SetDomainName(v string) *StreamingDistribution
    func (s *StreamingDistribution) SetId(v string) *StreamingDistribution
    func (s *StreamingDistribution) SetLastModifiedTime(v time.Time) *StreamingDistribution
    func (s *StreamingDistribution) SetStatus(v string) *StreamingDistribution
    func (s *StreamingDistribution) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *StreamingDistribution
    func (s StreamingDistribution) String() string
type StreamingDistributionConfig
    func (s StreamingDistributionConfig) GoString() string
    func (s *StreamingDistributionConfig) SetAliases(v *Aliases) *StreamingDistributionConfig
    func (s *StreamingDistributionConfig) SetCallerReference(v string) *StreamingDistributionConfig
    func (s *StreamingDistributionConfig) SetComment(v string) *StreamingDistributionConfig
    func (s *StreamingDistributionConfig) SetEnabled(v bool) *StreamingDistributionConfig
    func (s *StreamingDistributionConfig) SetLogging(v *StreamingLoggingConfig) *StreamingDistributionConfig
    func (s *StreamingDistributionConfig) SetPriceClass(v string) *StreamingDistributionConfig
    func (s *StreamingDistributionConfig) SetS3Origin(v *S3Origin) *StreamingDistributionConfig
    func (s *StreamingDistributionConfig) SetTrustedSigners(v *TrustedSigners) *StreamingDistributionConfig
    func (s StreamingDistributionConfig) String() string
    func (s *StreamingDistributionConfig) Validate() error
type StreamingDistributionConfigWithTags
    func (s StreamingDistributionConfigWithTags) GoString() string
    func (s *StreamingDistributionConfigWithTags) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *StreamingDistributionConfigWithTags
    func (s *StreamingDistributionConfigWithTags) SetTags(v *Tags) *StreamingDistributionConfigWithTags
    func (s StreamingDistributionConfigWithTags) String() string
    func (s *StreamingDistributionConfigWithTags) Validate() error
type StreamingDistributionList
    func (s StreamingDistributionList) GoString() string
    func (s *StreamingDistributionList) SetIsTruncated(v bool) *StreamingDistributionList
    func (s *StreamingDistributionList) SetItems(v []*StreamingDistributionSummary) *StreamingDistributionList
    func (s *StreamingDistributionList) SetMarker(v string) *StreamingDistributionList
    func (s *StreamingDistributionList) SetMaxItems(v int64) *StreamingDistributionList
    func (s *StreamingDistributionList) SetNextMarker(v string) *StreamingDistributionList
    func (s *StreamingDistributionList) SetQuantity(v int64) *StreamingDistributionList
    func (s StreamingDistributionList) String() string
type StreamingDistributionSummary
    func (s StreamingDistributionSummary) GoString() string
    func (s *StreamingDistributionSummary) SetARN(v string) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetAliases(v *Aliases) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetComment(v string) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetDomainName(v string) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetEnabled(v bool) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetId(v string) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetLastModifiedTime(v time.Time) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetPriceClass(v string) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetS3Origin(v *S3Origin) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetStatus(v string) *StreamingDistributionSummary
    func (s *StreamingDistributionSummary) SetTrustedSigners(v *TrustedSigners) *StreamingDistributionSummary
    func (s StreamingDistributionSummary) String() string
type StreamingLoggingConfig
    func (s StreamingLoggingConfig) GoString() string
    func (s *StreamingLoggingConfig) SetBucket(v string) *StreamingLoggingConfig
    func (s *StreamingLoggingConfig) SetEnabled(v bool) *StreamingLoggingConfig
    func (s *StreamingLoggingConfig) SetPrefix(v string) *StreamingLoggingConfig
    func (s StreamingLoggingConfig) String() string
    func (s *StreamingLoggingConfig) Validate() error
type Tag
    func (s Tag) GoString() string
    func (s *Tag) SetKey(v string) *Tag
    func (s *Tag) SetValue(v string) *Tag
    func (s Tag) String() string
    func (s *Tag) Validate() error
type TagKeys
    func (s TagKeys) GoString() string
    func (s *TagKeys) SetItems(v []*string) *TagKeys
    func (s TagKeys) String() string
type TagResourceInput
    func (s TagResourceInput) GoString() string
    func (s *TagResourceInput) SetResource(v string) *TagResourceInput
    func (s *TagResourceInput) SetTags(v *Tags) *TagResourceInput
    func (s TagResourceInput) String() string
    func (s *TagResourceInput) Validate() error
type TagResourceOutput
    func (s TagResourceOutput) GoString() string
    func (s TagResourceOutput) String() string
type Tags
    func (s Tags) GoString() string
    func (s *Tags) SetItems(v []*Tag) *Tags
    func (s Tags) String() string
    func (s *Tags) Validate() error
type TrustedSigners
    func (s TrustedSigners) GoString() string
    func (s *TrustedSigners) SetEnabled(v bool) *TrustedSigners
    func (s *TrustedSigners) SetItems(v []*string) *TrustedSigners
    func (s *TrustedSigners) SetQuantity(v int64) *TrustedSigners
    func (s TrustedSigners) String() string
    func (s *TrustedSigners) Validate() error
type UntagResourceInput
    func (s UntagResourceInput) GoString() string
    func (s *UntagResourceInput) SetResource(v string) *UntagResourceInput
    func (s *UntagResourceInput) SetTagKeys(v *TagKeys) *UntagResourceInput
    func (s UntagResourceInput) String() string
    func (s *UntagResourceInput) Validate() error
type UntagResourceOutput
    func (s UntagResourceOutput) GoString() string
    func (s UntagResourceOutput) String() string
type UpdateCloudFrontOriginAccessIdentityInput
    func (s UpdateCloudFrontOriginAccessIdentityInput) GoString() string
    func (s *UpdateCloudFrontOriginAccessIdentityInput) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *UpdateCloudFrontOriginAccessIdentityInput
    func (s *UpdateCloudFrontOriginAccessIdentityInput) SetId(v string) *UpdateCloudFrontOriginAccessIdentityInput
    func (s *UpdateCloudFrontOriginAccessIdentityInput) SetIfMatch(v string) *UpdateCloudFrontOriginAccessIdentityInput
    func (s UpdateCloudFrontOriginAccessIdentityInput) String() string
    func (s *UpdateCloudFrontOriginAccessIdentityInput) Validate() error
type UpdateCloudFrontOriginAccessIdentityOutput
    func (s UpdateCloudFrontOriginAccessIdentityOutput) GoString() string
    func (s *UpdateCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity(v *OriginAccessIdentity) *UpdateCloudFrontOriginAccessIdentityOutput
    func (s *UpdateCloudFrontOriginAccessIdentityOutput) SetETag(v string) *UpdateCloudFrontOriginAccessIdentityOutput
    func (s UpdateCloudFrontOriginAccessIdentityOutput) String() string
type UpdateDistributionInput
    func (s UpdateDistributionInput) GoString() string
    func (s *UpdateDistributionInput) SetDistributionConfig(v *DistributionConfig) *UpdateDistributionInput
    func (s *UpdateDistributionInput) SetId(v string) *UpdateDistributionInput
    func (s *UpdateDistributionInput) SetIfMatch(v string) *UpdateDistributionInput
    func (s UpdateDistributionInput) String() string
    func (s *UpdateDistributionInput) Validate() error
type UpdateDistributionOutput
    func (s UpdateDistributionOutput) GoString() string
    func (s *UpdateDistributionOutput) SetDistribution(v *Distribution) *UpdateDistributionOutput
    func (s *UpdateDistributionOutput) SetETag(v string) *UpdateDistributionOutput
    func (s UpdateDistributionOutput) String() string
type UpdateStreamingDistributionInput
    func (s UpdateStreamingDistributionInput) GoString() string
    func (s *UpdateStreamingDistributionInput) SetId(v string) *UpdateStreamingDistributionInput
    func (s *UpdateStreamingDistributionInput) SetIfMatch(v string) *UpdateStreamingDistributionInput
    func (s *UpdateStreamingDistributionInput) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *UpdateStreamingDistributionInput
    func (s UpdateStreamingDistributionInput) String() string
    func (s *UpdateStreamingDistributionInput) Validate() error
type UpdateStreamingDistributionOutput
    func (s UpdateStreamingDistributionOutput) GoString() string
    func (s *UpdateStreamingDistributionOutput) SetETag(v string) *UpdateStreamingDistributionOutput
    func (s *UpdateStreamingDistributionOutput) SetStreamingDistribution(v *StreamingDistribution) *UpdateStreamingDistributionOutput
    func (s UpdateStreamingDistributionOutput) String() string
type ViewerCertificate
    func (s ViewerCertificate) GoString() string
    func (s *ViewerCertificate) SetACMCertificateArn(v string) *ViewerCertificate
    func (s *ViewerCertificate) SetCertificate(v string) *ViewerCertificate
    func (s *ViewerCertificate) SetCertificateSource(v string) *ViewerCertificate
    func (s *ViewerCertificate) SetCloudFrontDefaultCertificate(v bool) *ViewerCertificate
    func (s *ViewerCertificate) SetIAMCertificateId(v string) *ViewerCertificate
    func (s *ViewerCertificate) SetMinimumProtocolVersion(v string) *ViewerCertificate
    func (s *ViewerCertificate) SetSSLSupportMethod(v string) *ViewerCertificate
    func (s ViewerCertificate) String() string

Package files

api.go doc.go errors.go service.go waiters.go

Constants

const (
    // CertificateSourceCloudfront is a CertificateSource enum value
    CertificateSourceCloudfront = "cloudfront"

    // CertificateSourceIam is a CertificateSource enum value
    CertificateSourceIam = "iam"

    // CertificateSourceAcm is a CertificateSource enum value
    CertificateSourceAcm = "acm"
)
const (
    // EventTypeViewerRequest is a EventType enum value
    EventTypeViewerRequest = "viewer-request"

    // EventTypeViewerResponse is a EventType enum value
    EventTypeViewerResponse = "viewer-response"

    // EventTypeOriginRequest is a EventType enum value
    EventTypeOriginRequest = "origin-request"

    // EventTypeOriginResponse is a EventType enum value
    EventTypeOriginResponse = "origin-response"
)
const (
    // GeoRestrictionTypeBlacklist is a GeoRestrictionType enum value
    GeoRestrictionTypeBlacklist = "blacklist"

    // GeoRestrictionTypeWhitelist is a GeoRestrictionType enum value
    GeoRestrictionTypeWhitelist = "whitelist"

    // GeoRestrictionTypeNone is a GeoRestrictionType enum value
    GeoRestrictionTypeNone = "none"
)
const (
    // HttpVersionHttp11 is a HttpVersion enum value
    HttpVersionHttp11 = "http1.1"

    // HttpVersionHttp2 is a HttpVersion enum value
    HttpVersionHttp2 = "http2"
)
const (
    // ItemSelectionNone is a ItemSelection enum value
    ItemSelectionNone = "none"

    // ItemSelectionWhitelist is a ItemSelection enum value
    ItemSelectionWhitelist = "whitelist"

    // ItemSelectionAll is a ItemSelection enum value
    ItemSelectionAll = "all"
)
const (
    // MethodGet is a Method enum value
    MethodGet = "GET"

    // MethodHead is a Method enum value
    MethodHead = "HEAD"

    // MethodPost is a Method enum value
    MethodPost = "POST"

    // MethodPut is a Method enum value
    MethodPut = "PUT"

    // MethodPatch is a Method enum value
    MethodPatch = "PATCH"

    // MethodOptions is a Method enum value
    MethodOptions = "OPTIONS"

    // MethodDelete is a Method enum value
    MethodDelete = "DELETE"
)
const (
    // MinimumProtocolVersionSslv3 is a MinimumProtocolVersion enum value
    MinimumProtocolVersionSslv3 = "SSLv3"

    // MinimumProtocolVersionTlsv1 is a MinimumProtocolVersion enum value
    MinimumProtocolVersionTlsv1 = "TLSv1"
)
const (
    // OriginProtocolPolicyHttpOnly is a OriginProtocolPolicy enum value
    OriginProtocolPolicyHttpOnly = "http-only"

    // OriginProtocolPolicyMatchViewer is a OriginProtocolPolicy enum value
    OriginProtocolPolicyMatchViewer = "match-viewer"

    // OriginProtocolPolicyHttpsOnly is a OriginProtocolPolicy enum value
    OriginProtocolPolicyHttpsOnly = "https-only"
)
const (
    // PriceClassPriceClass100 is a PriceClass enum value
    PriceClassPriceClass100 = "PriceClass_100"

    // PriceClassPriceClass200 is a PriceClass enum value
    PriceClassPriceClass200 = "PriceClass_200"

    // PriceClassPriceClassAll is a PriceClass enum value
    PriceClassPriceClassAll = "PriceClass_All"
)
const (
    // SSLSupportMethodSniOnly is a SSLSupportMethod enum value
    SSLSupportMethodSniOnly = "sni-only"

    // SSLSupportMethodVip is a SSLSupportMethod enum value
    SSLSupportMethodVip = "vip"
)
const (
    // SslProtocolSslv3 is a SslProtocol enum value
    SslProtocolSslv3 = "SSLv3"

    // SslProtocolTlsv1 is a SslProtocol enum value
    SslProtocolTlsv1 = "TLSv1"

    // SslProtocolTlsv11 is a SslProtocol enum value
    SslProtocolTlsv11 = "TLSv1.1"

    // SslProtocolTlsv12 is a SslProtocol enum value
    SslProtocolTlsv12 = "TLSv1.2"
)
const (
    // ViewerProtocolPolicyAllowAll is a ViewerProtocolPolicy enum value
    ViewerProtocolPolicyAllowAll = "allow-all"

    // ViewerProtocolPolicyHttpsOnly is a ViewerProtocolPolicy enum value
    ViewerProtocolPolicyHttpsOnly = "https-only"

    // ViewerProtocolPolicyRedirectToHttps is a ViewerProtocolPolicy enum value
    ViewerProtocolPolicyRedirectToHttps = "redirect-to-https"
)
const (

    // ErrCodeAccessDenied for service response error code
    // "AccessDenied".
    //
    // Access denied.
    ErrCodeAccessDenied = "AccessDenied"

    // ErrCodeBatchTooLarge for service response error code
    // "BatchTooLarge".
    ErrCodeBatchTooLarge = "BatchTooLarge"

    // ErrCodeCNAMEAlreadyExists for service response error code
    // "CNAMEAlreadyExists".
    ErrCodeCNAMEAlreadyExists = "CNAMEAlreadyExists"

    // ErrCodeDistributionAlreadyExists for service response error code
    // "DistributionAlreadyExists".
    //
    // The caller reference you attempted to create the distribution with is associated
    // with another distribution.
    ErrCodeDistributionAlreadyExists = "DistributionAlreadyExists"

    // ErrCodeDistributionNotDisabled for service response error code
    // "DistributionNotDisabled".
    ErrCodeDistributionNotDisabled = "DistributionNotDisabled"

    // ErrCodeIllegalUpdate for service response error code
    // "IllegalUpdate".
    //
    // Origin and CallerReference cannot be updated.
    ErrCodeIllegalUpdate = "IllegalUpdate"

    // ErrCodeInconsistentQuantities for service response error code
    // "InconsistentQuantities".
    //
    // The value of Quantity and the size of Items do not match.
    ErrCodeInconsistentQuantities = "InconsistentQuantities"

    // ErrCodeInvalidArgument for service response error code
    // "InvalidArgument".
    //
    // The argument is invalid.
    ErrCodeInvalidArgument = "InvalidArgument"

    // ErrCodeInvalidDefaultRootObject for service response error code
    // "InvalidDefaultRootObject".
    //
    // The default root object file name is too big or contains an invalid character.
    ErrCodeInvalidDefaultRootObject = "InvalidDefaultRootObject"

    // ErrCodeInvalidErrorCode for service response error code
    // "InvalidErrorCode".
    ErrCodeInvalidErrorCode = "InvalidErrorCode"

    // ErrCodeInvalidForwardCookies for service response error code
    // "InvalidForwardCookies".
    //
    // Your request contains forward cookies option which doesn't match with the
    // expectation for the whitelisted list of cookie names. Either list of cookie
    // names has been specified when not allowed or list of cookie names is missing
    // when expected.
    ErrCodeInvalidForwardCookies = "InvalidForwardCookies"

    // ErrCodeInvalidGeoRestrictionParameter for service response error code
    // "InvalidGeoRestrictionParameter".
    ErrCodeInvalidGeoRestrictionParameter = "InvalidGeoRestrictionParameter"

    // ErrCodeInvalidHeadersForS3Origin for service response error code
    // "InvalidHeadersForS3Origin".
    ErrCodeInvalidHeadersForS3Origin = "InvalidHeadersForS3Origin"

    // ErrCodeInvalidIfMatchVersion for service response error code
    // "InvalidIfMatchVersion".
    //
    // The If-Match version is missing or not valid for the distribution.
    ErrCodeInvalidIfMatchVersion = "InvalidIfMatchVersion"

    // ErrCodeInvalidLambdaFunctionAssociation for service response error code
    // "InvalidLambdaFunctionAssociation".
    //
    // The specified Lambda function association is invalid.
    ErrCodeInvalidLambdaFunctionAssociation = "InvalidLambdaFunctionAssociation"

    // ErrCodeInvalidLocationCode for service response error code
    // "InvalidLocationCode".
    ErrCodeInvalidLocationCode = "InvalidLocationCode"

    // ErrCodeInvalidMinimumProtocolVersion for service response error code
    // "InvalidMinimumProtocolVersion".
    ErrCodeInvalidMinimumProtocolVersion = "InvalidMinimumProtocolVersion"

    // ErrCodeInvalidOrigin for service response error code
    // "InvalidOrigin".
    //
    // The Amazon S3 origin server specified does not refer to a valid Amazon S3
    // bucket.
    ErrCodeInvalidOrigin = "InvalidOrigin"

    // ErrCodeInvalidOriginAccessIdentity for service response error code
    // "InvalidOriginAccessIdentity".
    //
    // The origin access identity is not valid or doesn't exist.
    ErrCodeInvalidOriginAccessIdentity = "InvalidOriginAccessIdentity"

    // ErrCodeInvalidOriginKeepaliveTimeout for service response error code
    // "InvalidOriginKeepaliveTimeout".
    ErrCodeInvalidOriginKeepaliveTimeout = "InvalidOriginKeepaliveTimeout"

    // ErrCodeInvalidOriginReadTimeout for service response error code
    // "InvalidOriginReadTimeout".
    ErrCodeInvalidOriginReadTimeout = "InvalidOriginReadTimeout"

    // ErrCodeInvalidProtocolSettings for service response error code
    // "InvalidProtocolSettings".
    //
    // You cannot specify SSLv3 as the minimum protocol version if you only want
    // to support only clients that support Server Name Indication (SNI).
    ErrCodeInvalidProtocolSettings = "InvalidProtocolSettings"

    // ErrCodeInvalidQueryStringParameters for service response error code
    // "InvalidQueryStringParameters".
    ErrCodeInvalidQueryStringParameters = "InvalidQueryStringParameters"

    // ErrCodeInvalidRelativePath for service response error code
    // "InvalidRelativePath".
    //
    // The relative path is too big, is not URL-encoded, or does not begin with
    // a slash (/).
    ErrCodeInvalidRelativePath = "InvalidRelativePath"

    // ErrCodeInvalidRequiredProtocol for service response error code
    // "InvalidRequiredProtocol".
    //
    // This operation requires the HTTPS protocol. Ensure that you specify the HTTPS
    // protocol in your request, or omit the RequiredProtocols element from your
    // distribution configuration.
    ErrCodeInvalidRequiredProtocol = "InvalidRequiredProtocol"

    // ErrCodeInvalidResponseCode for service response error code
    // "InvalidResponseCode".
    ErrCodeInvalidResponseCode = "InvalidResponseCode"

    // ErrCodeInvalidTTLOrder for service response error code
    // "InvalidTTLOrder".
    ErrCodeInvalidTTLOrder = "InvalidTTLOrder"

    // ErrCodeInvalidTagging for service response error code
    // "InvalidTagging".
    ErrCodeInvalidTagging = "InvalidTagging"

    // ErrCodeInvalidViewerCertificate for service response error code
    // "InvalidViewerCertificate".
    ErrCodeInvalidViewerCertificate = "InvalidViewerCertificate"

    // ErrCodeInvalidWebACLId for service response error code
    // "InvalidWebACLId".
    ErrCodeInvalidWebACLId = "InvalidWebACLId"

    // ErrCodeMissingBody for service response error code
    // "MissingBody".
    //
    // This operation requires a body. Ensure that the body is present and the Content-Type
    // header is set.
    ErrCodeMissingBody = "MissingBody"

    // ErrCodeNoSuchCloudFrontOriginAccessIdentity for service response error code
    // "NoSuchCloudFrontOriginAccessIdentity".
    //
    // The specified origin access identity does not exist.
    ErrCodeNoSuchCloudFrontOriginAccessIdentity = "NoSuchCloudFrontOriginAccessIdentity"

    // ErrCodeNoSuchDistribution for service response error code
    // "NoSuchDistribution".
    //
    // The specified distribution does not exist.
    ErrCodeNoSuchDistribution = "NoSuchDistribution"

    // ErrCodeNoSuchInvalidation for service response error code
    // "NoSuchInvalidation".
    //
    // The specified invalidation does not exist.
    ErrCodeNoSuchInvalidation = "NoSuchInvalidation"

    // ErrCodeNoSuchOrigin for service response error code
    // "NoSuchOrigin".
    //
    // No origin exists with the specified Origin Id.
    ErrCodeNoSuchOrigin = "NoSuchOrigin"

    // ErrCodeNoSuchResource for service response error code
    // "NoSuchResource".
    ErrCodeNoSuchResource = "NoSuchResource"

    // ErrCodeNoSuchStreamingDistribution for service response error code
    // "NoSuchStreamingDistribution".
    //
    // The specified streaming distribution does not exist.
    ErrCodeNoSuchStreamingDistribution = "NoSuchStreamingDistribution"

    // ErrCodeOriginAccessIdentityAlreadyExists for service response error code
    // "OriginAccessIdentityAlreadyExists".
    //
    // If the CallerReference is a value you already sent in a previous request
    // to create an identity but the content of the CloudFrontOriginAccessIdentityConfig
    // is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists
    // error.
    ErrCodeOriginAccessIdentityAlreadyExists = "OriginAccessIdentityAlreadyExists"

    // ErrCodeOriginAccessIdentityInUse for service response error code
    // "OriginAccessIdentityInUse".
    ErrCodeOriginAccessIdentityInUse = "OriginAccessIdentityInUse"

    // ErrCodePreconditionFailed for service response error code
    // "PreconditionFailed".
    //
    // The precondition given in one or more of the request-header fields evaluated
    // to false.
    ErrCodePreconditionFailed = "PreconditionFailed"

    // ErrCodeStreamingDistributionAlreadyExists for service response error code
    // "StreamingDistributionAlreadyExists".
    ErrCodeStreamingDistributionAlreadyExists = "StreamingDistributionAlreadyExists"

    // ErrCodeStreamingDistributionNotDisabled for service response error code
    // "StreamingDistributionNotDisabled".
    ErrCodeStreamingDistributionNotDisabled = "StreamingDistributionNotDisabled"

    // ErrCodeTooManyCacheBehaviors for service response error code
    // "TooManyCacheBehaviors".
    //
    // You cannot create more cache behaviors for the distribution.
    ErrCodeTooManyCacheBehaviors = "TooManyCacheBehaviors"

    // ErrCodeTooManyCertificates for service response error code
    // "TooManyCertificates".
    //
    // You cannot create anymore custom SSL/TLS certificates.
    ErrCodeTooManyCertificates = "TooManyCertificates"

    // ErrCodeTooManyCloudFrontOriginAccessIdentities for service response error code
    // "TooManyCloudFrontOriginAccessIdentities".
    //
    // Processing your request would cause you to exceed the maximum number of origin
    // access identities allowed.
    ErrCodeTooManyCloudFrontOriginAccessIdentities = "TooManyCloudFrontOriginAccessIdentities"

    // ErrCodeTooManyCookieNamesInWhiteList for service response error code
    // "TooManyCookieNamesInWhiteList".
    //
    // Your request contains more cookie names in the whitelist than are allowed
    // per cache behavior.
    ErrCodeTooManyCookieNamesInWhiteList = "TooManyCookieNamesInWhiteList"

    // ErrCodeTooManyDistributionCNAMEs for service response error code
    // "TooManyDistributionCNAMEs".
    //
    // Your request contains more CNAMEs than are allowed per distribution.
    ErrCodeTooManyDistributionCNAMEs = "TooManyDistributionCNAMEs"

    // ErrCodeTooManyDistributions for service response error code
    // "TooManyDistributions".
    //
    // Processing your request would cause you to exceed the maximum number of distributions
    // allowed.
    ErrCodeTooManyDistributions = "TooManyDistributions"

    // ErrCodeTooManyDistributionsWithLambdaAssociations for service response error code
    // "TooManyDistributionsWithLambdaAssociations".
    //
    // Processing your request would cause the maximum number of distributions with
    // Lambda function associations per owner to be exceeded.
    ErrCodeTooManyDistributionsWithLambdaAssociations = "TooManyDistributionsWithLambdaAssociations"

    // ErrCodeTooManyHeadersInForwardedValues for service response error code
    // "TooManyHeadersInForwardedValues".
    ErrCodeTooManyHeadersInForwardedValues = "TooManyHeadersInForwardedValues"

    // ErrCodeTooManyInvalidationsInProgress for service response error code
    // "TooManyInvalidationsInProgress".
    //
    // You have exceeded the maximum number of allowable InProgress invalidation
    // batch requests, or invalidation objects.
    ErrCodeTooManyInvalidationsInProgress = "TooManyInvalidationsInProgress"

    // ErrCodeTooManyLambdaFunctionAssociations for service response error code
    // "TooManyLambdaFunctionAssociations".
    //
    // Your request contains more Lambda function associations than are allowed
    // per distribution.
    ErrCodeTooManyLambdaFunctionAssociations = "TooManyLambdaFunctionAssociations"

    // ErrCodeTooManyOriginCustomHeaders for service response error code
    // "TooManyOriginCustomHeaders".
    ErrCodeTooManyOriginCustomHeaders = "TooManyOriginCustomHeaders"

    // ErrCodeTooManyOrigins for service response error code
    // "TooManyOrigins".
    //
    // You cannot create more origins for the distribution.
    ErrCodeTooManyOrigins = "TooManyOrigins"

    // ErrCodeTooManyQueryStringParameters for service response error code
    // "TooManyQueryStringParameters".
    ErrCodeTooManyQueryStringParameters = "TooManyQueryStringParameters"

    // ErrCodeTooManyStreamingDistributionCNAMEs for service response error code
    // "TooManyStreamingDistributionCNAMEs".
    ErrCodeTooManyStreamingDistributionCNAMEs = "TooManyStreamingDistributionCNAMEs"

    // ErrCodeTooManyStreamingDistributions for service response error code
    // "TooManyStreamingDistributions".
    //
    // Processing your request would cause you to exceed the maximum number of streaming
    // distributions allowed.
    ErrCodeTooManyStreamingDistributions = "TooManyStreamingDistributions"

    // ErrCodeTooManyTrustedSigners for service response error code
    // "TooManyTrustedSigners".
    //
    // Your request contains more trusted signers than are allowed per distribution.
    ErrCodeTooManyTrustedSigners = "TooManyTrustedSigners"

    // ErrCodeTrustedSignerDoesNotExist for service response error code
    // "TrustedSignerDoesNotExist".
    //
    // One or more of your trusted signers do not exist.
    ErrCodeTrustedSignerDoesNotExist = "TrustedSignerDoesNotExist"
)

Service information constants

const (
    ServiceName = "cloudfront" // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName  // Service ID for Regions and Endpoints metadata.
)

type ActiveTrustedSigners

A complex type that lists the AWS accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.

The Signer complex type lists the AWS account number of the trusted signer or self if the signer is the AWS account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's AWS account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs.

For more information, see Serving Private Content through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ActiveTrustedSigners

type ActiveTrustedSigners struct {

    // Enabled is true if any of the AWS accounts listed in the TrustedSigners complex
    // type for this RTMP distribution have active CloudFront key pairs. If not,
    // Enabled is false.
    //
    // For more information, see ActiveTrustedSigners.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // A complex type that contains one Signer complex type for each trusted signer
    // that is specified in the TrustedSigners complex type.
    //
    // For more information, see ActiveTrustedSigners.
    Items []*Signer `locationNameList:"Signer" type:"list"`

    // A complex type that contains one Signer complex type for each trusted signer
    // specified in the TrustedSigners complex type.
    //
    // For more information, see ActiveTrustedSigners.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (ActiveTrustedSigners) GoString

func (s ActiveTrustedSigners) GoString() string

GoString returns the string representation

func (*ActiveTrustedSigners) SetEnabled

func (s *ActiveTrustedSigners) SetEnabled(v bool) *ActiveTrustedSigners

SetEnabled sets the Enabled field's value.

func (*ActiveTrustedSigners) SetItems

func (s *ActiveTrustedSigners) SetItems(v []*Signer) *ActiveTrustedSigners

SetItems sets the Items field's value.

func (*ActiveTrustedSigners) SetQuantity

func (s *ActiveTrustedSigners) SetQuantity(v int64) *ActiveTrustedSigners

SetQuantity sets the Quantity field's value.

func (ActiveTrustedSigners) String

func (s ActiveTrustedSigners) String() string

String returns the string representation

type Aliases

A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Aliases

type Aliases struct {

    // A complex type that contains the CNAME aliases, if any, that you want to
    // associate with this distribution.
    Items []*string `locationNameList:"CNAME" type:"list"`

    // The number of CNAME aliases, if any, that you want to associate with this
    // distribution.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (Aliases) GoString

func (s Aliases) GoString() string

GoString returns the string representation

func (*Aliases) SetItems

func (s *Aliases) SetItems(v []*string) *Aliases

SetItems sets the Items field's value.

func (*Aliases) SetQuantity

func (s *Aliases) SetQuantity(v int64) *Aliases

SetQuantity sets the Quantity field's value.

func (Aliases) String

func (s Aliases) String() string

String returns the string representation

func (*Aliases) Validate

func (s *Aliases) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AllowedMethods

A complex type that controls which HTTP methods CloudFront processes and forwards to your Amazon S3 bucket or your custom origin. There are three choices:

* CloudFront forwards only GET and HEAD requests.

* CloudFront forwards only GET, HEAD, and OPTIONS requests.

* CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE
requests.

If you pick the third choice, you may need to restrict access to your Amazon S3 bucket or to your custom origin so users can't perform operations that you don't want them to. For example, you might not want users to have permissions to delete objects from your origin. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/AllowedMethods

type AllowedMethods struct {

    // A complex type that controls whether CloudFront caches the response to requests
    // using the specified HTTP methods. There are two choices:
    //
    //    * CloudFront caches responses to GET and HEAD requests.
    //
    //    * CloudFront caches responses to GET, HEAD, and OPTIONS requests.
    //
    // If you pick the second choice for your Amazon S3 Origin, you may need to
    // forward Access-Control-Request-Method, Access-Control-Request-Headers, and
    // Origin headers for the responses to be cached correctly.
    CachedMethods *CachedMethods `type:"structure"`

    // A complex type that contains the HTTP methods that you want CloudFront to
    // process and forward to your origin.
    //
    // Items is a required field
    Items []*string `locationNameList:"Method" type:"list" required:"true"`

    // The number of HTTP methods that you want CloudFront to forward to your origin.
    // Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS
    // requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (AllowedMethods) GoString

func (s AllowedMethods) GoString() string

GoString returns the string representation

func (*AllowedMethods) SetCachedMethods

func (s *AllowedMethods) SetCachedMethods(v *CachedMethods) *AllowedMethods

SetCachedMethods sets the CachedMethods field's value.

func (*AllowedMethods) SetItems

func (s *AllowedMethods) SetItems(v []*string) *AllowedMethods

SetItems sets the Items field's value.

func (*AllowedMethods) SetQuantity

func (s *AllowedMethods) SetQuantity(v int64) *AllowedMethods

SetQuantity sets the Quantity field's value.

func (AllowedMethods) String

func (s AllowedMethods) String() string

String returns the string representation

func (*AllowedMethods) Validate

func (s *AllowedMethods) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CacheBehavior

A complex type that describes how CloudFront processes requests.

You must create at least as many cache behaviors (including the default cache behavior) as you have origins if you want CloudFront to distribute objects from all of the origins. Each cache behavior specifies the one origin from which you want CloudFront to get objects. If you have two origins and only the default cache behavior, the default cache behavior will cause CloudFront to get objects from one of the origins, but the other origin is never used.

For the current limit on the number of cache behaviors that you can add to a distribution, see Amazon CloudFront Limits (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_cloudfront) in the AWS General Reference.

If you don't want to specify any cache behaviors, include only an empty CacheBehaviors element. Don't include an empty CacheBehavior element, or CloudFront returns a MalformedXML error.

To delete all cache behaviors in an existing distribution, update the distribution configuration and include only an empty CacheBehaviors element.

To add, change, or remove one or more cache behaviors, update the distribution configuration and specify all of the cache behaviors that you want to include in the updated distribution.

For more information about cache behaviors, see Cache Behaviors (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CacheBehavior

type CacheBehavior struct {

    // A complex type that controls which HTTP methods CloudFront processes and
    // forwards to your Amazon S3 bucket or your custom origin. There are three
    // choices:
    //
    //    * CloudFront forwards only GET and HEAD requests.
    //
    //    * CloudFront forwards only GET, HEAD, and OPTIONS requests.
    //
    //    * CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE
    //    requests.
    //
    // If you pick the third choice, you may need to restrict access to your Amazon
    // S3 bucket or to your custom origin so users can't perform operations that
    // you don't want them to. For example, you might not want users to have permissions
    // to delete objects from your origin.
    AllowedMethods *AllowedMethods `type:"structure"`

    // Whether you want CloudFront to automatically compress certain files for this
    // cache behavior. If so, specify true; if not, specify false. For more information,
    // see Serving Compressed Files (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html)
    // in the Amazon CloudFront Developer Guide.
    Compress *bool `type:"boolean"`

    // The default amount of time that you want objects to stay in CloudFront caches
    // before CloudFront forwards another request to your origin to determine whether
    // the object has been updated. The value that you specify applies only when
    // your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control
    // s-maxage, and Expires to objects. For more information, see Specifying How
    // Long Objects and Errors Stay in a CloudFront Edge Cache (Expiration) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
    // in the Amazon CloudFront Developer Guide.
    DefaultTTL *int64 `type:"long"`

    // A complex type that specifies how CloudFront handles query strings and cookies.
    //
    // ForwardedValues is a required field
    ForwardedValues *ForwardedValues `type:"structure" required:"true"`

    // A complex type that contains zero or more Lambda function associations for
    // a cache behavior.
    LambdaFunctionAssociations *LambdaFunctionAssociations `type:"structure"`

    // The maximum amount of time that you want objects to stay in CloudFront caches
    // before CloudFront forwards another request to your origin to determine whether
    // the object has been updated. The value that you specify applies only when
    // your origin adds HTTP headers such as Cache-Control max-age, Cache-Control
    // s-maxage, and Expires to objects. For more information, see Specifying How
    // Long Objects and Errors Stay in a CloudFront Edge Cache (Expiration) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
    // in the Amazon CloudFront Developer Guide.
    MaxTTL *int64 `type:"long"`

    // The minimum amount of time that you want objects to stay in CloudFront caches
    // before CloudFront forwards another request to your origin to determine whether
    // the object has been updated. For more information, see Specifying How Long
    // Objects and Errors Stay in a CloudFront Edge Cache (Expiration) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    //
    // You must specify 0 for MinTTL if you configure CloudFront to forward all
    // headers to your origin (under Headers, if you specify 1 for Quantity and
    // * for Name).
    //
    // MinTTL is a required field
    MinTTL *int64 `type:"long" required:"true"`

    // The pattern (for example, images/*.jpg) that specifies which requests to
    // apply the behavior to. When CloudFront receives a viewer request, the requested
    // path is compared with path patterns in the order in which cache behaviors
    // are listed in the distribution.
    //
    // You can optionally include a slash (/) at the beginning of the path pattern.
    // For example, /images/*.jpg. CloudFront behavior is the same with or without
    // the leading /.
    //
    // The path pattern for the default cache behavior is * and cannot be changed.
    // If the request for an object does not match the path pattern for any cache
    // behaviors, CloudFront applies the behavior in the default cache behavior.
    //
    // For more information, see Path Pattern (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesPathPattern)
    // in the  Amazon CloudFront Developer Guide.
    //
    // PathPattern is a required field
    PathPattern *string `type:"string" required:"true"`

    // Indicates whether you want to distribute media files in the Microsoft Smooth
    // Streaming format using the origin that is associated with this cache behavior.
    // If so, specify true; if not, specify false. If you specify true for SmoothStreaming,
    // you can still distribute other content using this cache behavior if the content
    // matches the value of PathPattern.
    SmoothStreaming *bool `type:"boolean"`

    // The value of ID for the origin that you want CloudFront to route requests
    // to when a request matches the path pattern either for a cache behavior or
    // for the default cache behavior.
    //
    // TargetOriginId is a required field
    TargetOriginId *string `type:"string" required:"true"`

    // A complex type that specifies the AWS accounts, if any, that you want to
    // allow to create signed URLs for private content.
    //
    // If you want to require signed URLs in requests for objects in the target
    // origin that match the PathPattern for this cache behavior, specify true for
    // Enabled, and specify the applicable values for Quantity and Items. For more
    // information, see Serving Private Content through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    //
    // If you don't want to require signed URLs in requests for objects that match
    // PathPattern, specify false for Enabled and 0 for Quantity. Omit Items.
    //
    // To add, change, or remove one or more trusted signers, change Enabled to
    // true (if it's currently false), change Quantity as applicable, and specify
    // all of the trusted signers that you want to include in the updated distribution.
    //
    // TrustedSigners is a required field
    TrustedSigners *TrustedSigners `type:"structure" required:"true"`

    // The protocol that viewers can use to access the files in the origin specified
    // by TargetOriginId when a request matches the path pattern in PathPattern.
    // You can specify the following options:
    //
    //    * allow-all: Viewers can use HTTP or HTTPS.
    //
    //    * redirect-to-https: If a viewer submits an HTTP request, CloudFront returns
    //    an HTTP status code of 301 (Moved Permanently) to the viewer along with
    //    the HTTPS URL. The viewer then resubmits the request using the new URL.
    //
    //
    //    * https-only: If a viewer sends an HTTP request, CloudFront returns an
    //    HTTP status code of 403 (Forbidden).
    //
    // For more information about requiring the HTTPS protocol, see Using an HTTPS
    // Connection to Access Your Objects (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // The only way to guarantee that viewers retrieve an object that was fetched
    // from the origin using HTTPS is never to use any other protocol to fetch the
    // object. If you have recently changed from HTTP to HTTPS, we recommend that
    // you clear your objects' cache because cached objects are protocol agnostic.
    // That means that an edge location will return an object from the cache regardless
    // of whether the current request protocol matches the protocol used previously.
    // For more information, see Specifying How Long Objects and Errors Stay in
    // a CloudFront Edge Cache (Expiration) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // ViewerProtocolPolicy is a required field
    ViewerProtocolPolicy *string `type:"string" required:"true" enum:"ViewerProtocolPolicy"`
    // contains filtered or unexported fields
}

func (CacheBehavior) GoString

func (s CacheBehavior) GoString() string

GoString returns the string representation

func (*CacheBehavior) SetAllowedMethods

func (s *CacheBehavior) SetAllowedMethods(v *AllowedMethods) *CacheBehavior

SetAllowedMethods sets the AllowedMethods field's value.

func (*CacheBehavior) SetCompress

func (s *CacheBehavior) SetCompress(v bool) *CacheBehavior

SetCompress sets the Compress field's value.

func (*CacheBehavior) SetDefaultTTL

func (s *CacheBehavior) SetDefaultTTL(v int64) *CacheBehavior

SetDefaultTTL sets the DefaultTTL field's value.

func (*CacheBehavior) SetForwardedValues

func (s *CacheBehavior) SetForwardedValues(v *ForwardedValues) *CacheBehavior

SetForwardedValues sets the ForwardedValues field's value.

func (*CacheBehavior) SetLambdaFunctionAssociations

func (s *CacheBehavior) SetLambdaFunctionAssociations(v *LambdaFunctionAssociations) *CacheBehavior

SetLambdaFunctionAssociations sets the LambdaFunctionAssociations field's value.

func (*CacheBehavior) SetMaxTTL

func (s *CacheBehavior) SetMaxTTL(v int64) *CacheBehavior

SetMaxTTL sets the MaxTTL field's value.

func (*CacheBehavior) SetMinTTL

func (s *CacheBehavior) SetMinTTL(v int64) *CacheBehavior

SetMinTTL sets the MinTTL field's value.

func (*CacheBehavior) SetPathPattern

func (s *CacheBehavior) SetPathPattern(v string) *CacheBehavior

SetPathPattern sets the PathPattern field's value.

func (*CacheBehavior) SetSmoothStreaming

func (s *CacheBehavior) SetSmoothStreaming(v bool) *CacheBehavior

SetSmoothStreaming sets the SmoothStreaming field's value.

func (*CacheBehavior) SetTargetOriginId

func (s *CacheBehavior) SetTargetOriginId(v string) *CacheBehavior

SetTargetOriginId sets the TargetOriginId field's value.

func (*CacheBehavior) SetTrustedSigners

func (s *CacheBehavior) SetTrustedSigners(v *TrustedSigners) *CacheBehavior

SetTrustedSigners sets the TrustedSigners field's value.

func (*CacheBehavior) SetViewerProtocolPolicy

func (s *CacheBehavior) SetViewerProtocolPolicy(v string) *CacheBehavior

SetViewerProtocolPolicy sets the ViewerProtocolPolicy field's value.

func (CacheBehavior) String

func (s CacheBehavior) String() string

String returns the string representation

func (*CacheBehavior) Validate

func (s *CacheBehavior) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CacheBehaviors

A complex type that contains zero or more CacheBehavior elements. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CacheBehaviors

type CacheBehaviors struct {

    // Optional: A complex type that contains cache behaviors for this distribution.
    // If Quantity is 0, you can omit Items.
    Items []*CacheBehavior `locationNameList:"CacheBehavior" type:"list"`

    // The number of cache behaviors for this distribution.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (CacheBehaviors) GoString

func (s CacheBehaviors) GoString() string

GoString returns the string representation

func (*CacheBehaviors) SetItems

func (s *CacheBehaviors) SetItems(v []*CacheBehavior) *CacheBehaviors

SetItems sets the Items field's value.

func (*CacheBehaviors) SetQuantity

func (s *CacheBehaviors) SetQuantity(v int64) *CacheBehaviors

SetQuantity sets the Quantity field's value.

func (CacheBehaviors) String

func (s CacheBehaviors) String() string

String returns the string representation

func (*CacheBehaviors) Validate

func (s *CacheBehaviors) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CachedMethods

A complex type that controls whether CloudFront caches the response to requests using the specified HTTP methods. There are two choices:

* CloudFront caches responses to GET and HEAD requests.

* CloudFront caches responses to GET, HEAD, and OPTIONS requests.

If you pick the second choice for your Amazon S3 Origin, you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers, and Origin headers for the responses to be cached correctly. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CachedMethods

type CachedMethods struct {

    // A complex type that contains the HTTP methods that you want CloudFront to
    // cache responses to.
    //
    // Items is a required field
    Items []*string `locationNameList:"Method" type:"list" required:"true"`

    // The number of HTTP methods for which you want CloudFront to cache responses.
    // Valid values are 2 (for caching responses to GET and HEAD requests) and 3
    // (for caching responses to GET, HEAD, and OPTIONS requests).
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (CachedMethods) GoString

func (s CachedMethods) GoString() string

GoString returns the string representation

func (*CachedMethods) SetItems

func (s *CachedMethods) SetItems(v []*string) *CachedMethods

SetItems sets the Items field's value.

func (*CachedMethods) SetQuantity

func (s *CachedMethods) SetQuantity(v int64) *CachedMethods

SetQuantity sets the Quantity field's value.

func (CachedMethods) String

func (s CachedMethods) String() string

String returns the string representation

func (*CachedMethods) Validate

func (s *CachedMethods) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CloudFront

CloudFront provides the API operation methods for making requests to Amazon CloudFront. See this package's package overview docs for details on the service.

CloudFront methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

type CloudFront struct {
    *client.Client
}

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *CloudFront

New creates a new instance of the CloudFront client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a CloudFront client from just a session.
svc := cloudfront.New(mySession)

// Create a CloudFront client with additional configuration
svc := cloudfront.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*CloudFront) CreateCloudFrontOriginAccessIdentity

func (c *CloudFront) CreateCloudFrontOriginAccessIdentity(input *CreateCloudFrontOriginAccessIdentityInput) (*CreateCloudFrontOriginAccessIdentityOutput, error)

CreateCloudFrontOriginAccessIdentity API operation for Amazon CloudFront.

Creates a new origin access identity. If you're using Amazon S3 for your origin, you can use an origin access identity to require users to access your content using a CloudFront URL instead of the Amazon S3 URL. For more information about how to use origin access identities, see Serving Private Content through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) in the Amazon CloudFront Developer Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation CreateCloudFrontOriginAccessIdentity for usage and error information.

Returned Error Codes:

* ErrCodeOriginAccessIdentityAlreadyExists "OriginAccessIdentityAlreadyExists"
If the CallerReference is a value you already sent in a previous request
to create an identity but the content of the CloudFrontOriginAccessIdentityConfig
is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists
error.

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeTooManyCloudFrontOriginAccessIdentities "TooManyCloudFrontOriginAccessIdentities"
Processing your request would cause you to exceed the maximum number of origin
access identities allowed.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateCloudFrontOriginAccessIdentity

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.CreateCloudFrontOriginAccessIdentityInput{}

result, err := svc.CreateCloudFrontOriginAccessIdentity(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeOriginAccessIdentityAlreadyExists:
            fmt.Println(cloudfront.ErrCodeOriginAccessIdentityAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeTooManyCloudFrontOriginAccessIdentities:
            fmt.Println(cloudfront.ErrCodeTooManyCloudFrontOriginAccessIdentities, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) CreateCloudFrontOriginAccessIdentityRequest

func (c *CloudFront) CreateCloudFrontOriginAccessIdentityRequest(input *CreateCloudFrontOriginAccessIdentityInput) (req *request.Request, output *CreateCloudFrontOriginAccessIdentityOutput)

CreateCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the client's request for the CreateCloudFrontOriginAccessIdentity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateCloudFrontOriginAccessIdentity for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateCloudFrontOriginAccessIdentity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateCloudFrontOriginAccessIdentityRequest method.
req, resp := client.CreateCloudFrontOriginAccessIdentityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateCloudFrontOriginAccessIdentity

func (*CloudFront) CreateCloudFrontOriginAccessIdentityWithContext

func (c *CloudFront) CreateCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *CreateCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*CreateCloudFrontOriginAccessIdentityOutput, error)

CreateCloudFrontOriginAccessIdentityWithContext is the same as CreateCloudFrontOriginAccessIdentity with the addition of the ability to pass a context and additional request options.

See CreateCloudFrontOriginAccessIdentity for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) CreateDistribution

func (c *CloudFront) CreateDistribution(input *CreateDistributionInput) (*CreateDistributionOutput, error)

CreateDistribution API operation for Amazon CloudFront.

Creates a new web distribution. Send a POST request to the /CloudFront API version/distribution/distribution ID resource.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation CreateDistribution for usage and error information.

Returned Error Codes:

* ErrCodeCNAMEAlreadyExists "CNAMEAlreadyExists"

* ErrCodeDistributionAlreadyExists "DistributionAlreadyExists"
The caller reference you attempted to create the distribution with is associated
with another distribution.

* ErrCodeInvalidOrigin "InvalidOrigin"
The Amazon S3 origin server specified does not refer to a valid Amazon S3
bucket.

* ErrCodeInvalidOriginAccessIdentity "InvalidOriginAccessIdentity"
The origin access identity is not valid or doesn't exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeTooManyTrustedSigners "TooManyTrustedSigners"
Your request contains more trusted signers than are allowed per distribution.

* ErrCodeTrustedSignerDoesNotExist "TrustedSignerDoesNotExist"
One or more of your trusted signers do not exist.

* ErrCodeInvalidViewerCertificate "InvalidViewerCertificate"

* ErrCodeInvalidMinimumProtocolVersion "InvalidMinimumProtocolVersion"

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeTooManyDistributionCNAMEs "TooManyDistributionCNAMEs"
Your request contains more CNAMEs than are allowed per distribution.

* ErrCodeTooManyDistributions "TooManyDistributions"
Processing your request would cause you to exceed the maximum number of distributions
allowed.

* ErrCodeInvalidDefaultRootObject "InvalidDefaultRootObject"
The default root object file name is too big or contains an invalid character.

* ErrCodeInvalidRelativePath "InvalidRelativePath"
The relative path is too big, is not URL-encoded, or does not begin with
a slash (/).

* ErrCodeInvalidErrorCode "InvalidErrorCode"

* ErrCodeInvalidResponseCode "InvalidResponseCode"

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidRequiredProtocol "InvalidRequiredProtocol"
This operation requires the HTTPS protocol. Ensure that you specify the HTTPS
protocol in your request, or omit the RequiredProtocols element from your
distribution configuration.

* ErrCodeNoSuchOrigin "NoSuchOrigin"
No origin exists with the specified Origin Id.

* ErrCodeTooManyOrigins "TooManyOrigins"
You cannot create more origins for the distribution.

* ErrCodeTooManyCacheBehaviors "TooManyCacheBehaviors"
You cannot create more cache behaviors for the distribution.

* ErrCodeTooManyCookieNamesInWhiteList "TooManyCookieNamesInWhiteList"
Your request contains more cookie names in the whitelist than are allowed
per cache behavior.

* ErrCodeInvalidForwardCookies "InvalidForwardCookies"
Your request contains forward cookies option which doesn't match with the
expectation for the whitelisted list of cookie names. Either list of cookie
names has been specified when not allowed or list of cookie names is missing
when expected.

* ErrCodeTooManyHeadersInForwardedValues "TooManyHeadersInForwardedValues"

* ErrCodeInvalidHeadersForS3Origin "InvalidHeadersForS3Origin"

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

* ErrCodeTooManyCertificates "TooManyCertificates"
You cannot create anymore custom SSL/TLS certificates.

* ErrCodeInvalidLocationCode "InvalidLocationCode"

* ErrCodeInvalidGeoRestrictionParameter "InvalidGeoRestrictionParameter"

* ErrCodeInvalidProtocolSettings "InvalidProtocolSettings"
You cannot specify SSLv3 as the minimum protocol version if you only want
to support only clients that support Server Name Indication (SNI).

* ErrCodeInvalidTTLOrder "InvalidTTLOrder"

* ErrCodeInvalidWebACLId "InvalidWebACLId"

* ErrCodeTooManyOriginCustomHeaders "TooManyOriginCustomHeaders"

* ErrCodeTooManyQueryStringParameters "TooManyQueryStringParameters"

* ErrCodeInvalidQueryStringParameters "InvalidQueryStringParameters"

* ErrCodeTooManyDistributionsWithLambdaAssociations "TooManyDistributionsWithLambdaAssociations"
Processing your request would cause the maximum number of distributions with
Lambda function associations per owner to be exceeded.

* ErrCodeTooManyLambdaFunctionAssociations "TooManyLambdaFunctionAssociations"
Your request contains more Lambda function associations than are allowed
per distribution.

* ErrCodeInvalidLambdaFunctionAssociation "InvalidLambdaFunctionAssociation"
The specified Lambda function association is invalid.

* ErrCodeInvalidOriginReadTimeout "InvalidOriginReadTimeout"

* ErrCodeInvalidOriginKeepaliveTimeout "InvalidOriginKeepaliveTimeout"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.CreateDistributionInput{}

result, err := svc.CreateDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeCNAMEAlreadyExists:
            fmt.Println(cloudfront.ErrCodeCNAMEAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeDistributionAlreadyExists:
            fmt.Println(cloudfront.ErrCodeDistributionAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeInvalidOrigin:
            fmt.Println(cloudfront.ErrCodeInvalidOrigin, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeInvalidOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeTooManyTrustedSigners:
            fmt.Println(cloudfront.ErrCodeTooManyTrustedSigners, aerr.Error())
        case cloudfront.ErrCodeTrustedSignerDoesNotExist:
            fmt.Println(cloudfront.ErrCodeTrustedSignerDoesNotExist, aerr.Error())
        case cloudfront.ErrCodeInvalidViewerCertificate:
            fmt.Println(cloudfront.ErrCodeInvalidViewerCertificate, aerr.Error())
        case cloudfront.ErrCodeInvalidMinimumProtocolVersion:
            fmt.Println(cloudfront.ErrCodeInvalidMinimumProtocolVersion, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributionCNAMEs:
            fmt.Println(cloudfront.ErrCodeTooManyDistributionCNAMEs, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributions:
            fmt.Println(cloudfront.ErrCodeTooManyDistributions, aerr.Error())
        case cloudfront.ErrCodeInvalidDefaultRootObject:
            fmt.Println(cloudfront.ErrCodeInvalidDefaultRootObject, aerr.Error())
        case cloudfront.ErrCodeInvalidRelativePath:
            fmt.Println(cloudfront.ErrCodeInvalidRelativePath, aerr.Error())
        case cloudfront.ErrCodeInvalidErrorCode:
            fmt.Println(cloudfront.ErrCodeInvalidErrorCode, aerr.Error())
        case cloudfront.ErrCodeInvalidResponseCode:
            fmt.Println(cloudfront.ErrCodeInvalidResponseCode, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidRequiredProtocol:
            fmt.Println(cloudfront.ErrCodeInvalidRequiredProtocol, aerr.Error())
        case cloudfront.ErrCodeNoSuchOrigin:
            fmt.Println(cloudfront.ErrCodeNoSuchOrigin, aerr.Error())
        case cloudfront.ErrCodeTooManyOrigins:
            fmt.Println(cloudfront.ErrCodeTooManyOrigins, aerr.Error())
        case cloudfront.ErrCodeTooManyCacheBehaviors:
            fmt.Println(cloudfront.ErrCodeTooManyCacheBehaviors, aerr.Error())
        case cloudfront.ErrCodeTooManyCookieNamesInWhiteList:
            fmt.Println(cloudfront.ErrCodeTooManyCookieNamesInWhiteList, aerr.Error())
        case cloudfront.ErrCodeInvalidForwardCookies:
            fmt.Println(cloudfront.ErrCodeInvalidForwardCookies, aerr.Error())
        case cloudfront.ErrCodeTooManyHeadersInForwardedValues:
            fmt.Println(cloudfront.ErrCodeTooManyHeadersInForwardedValues, aerr.Error())
        case cloudfront.ErrCodeInvalidHeadersForS3Origin:
            fmt.Println(cloudfront.ErrCodeInvalidHeadersForS3Origin, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        case cloudfront.ErrCodeTooManyCertificates:
            fmt.Println(cloudfront.ErrCodeTooManyCertificates, aerr.Error())
        case cloudfront.ErrCodeInvalidLocationCode:
            fmt.Println(cloudfront.ErrCodeInvalidLocationCode, aerr.Error())
        case cloudfront.ErrCodeInvalidGeoRestrictionParameter:
            fmt.Println(cloudfront.ErrCodeInvalidGeoRestrictionParameter, aerr.Error())
        case cloudfront.ErrCodeInvalidProtocolSettings:
            fmt.Println(cloudfront.ErrCodeInvalidProtocolSettings, aerr.Error())
        case cloudfront.ErrCodeInvalidTTLOrder:
            fmt.Println(cloudfront.ErrCodeInvalidTTLOrder, aerr.Error())
        case cloudfront.ErrCodeInvalidWebACLId:
            fmt.Println(cloudfront.ErrCodeInvalidWebACLId, aerr.Error())
        case cloudfront.ErrCodeTooManyOriginCustomHeaders:
            fmt.Println(cloudfront.ErrCodeTooManyOriginCustomHeaders, aerr.Error())
        case cloudfront.ErrCodeTooManyQueryStringParameters:
            fmt.Println(cloudfront.ErrCodeTooManyQueryStringParameters, aerr.Error())
        case cloudfront.ErrCodeInvalidQueryStringParameters:
            fmt.Println(cloudfront.ErrCodeInvalidQueryStringParameters, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributionsWithLambdaAssociations:
            fmt.Println(cloudfront.ErrCodeTooManyDistributionsWithLambdaAssociations, aerr.Error())
        case cloudfront.ErrCodeTooManyLambdaFunctionAssociations:
            fmt.Println(cloudfront.ErrCodeTooManyLambdaFunctionAssociations, aerr.Error())
        case cloudfront.ErrCodeInvalidLambdaFunctionAssociation:
            fmt.Println(cloudfront.ErrCodeInvalidLambdaFunctionAssociation, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginReadTimeout:
            fmt.Println(cloudfront.ErrCodeInvalidOriginReadTimeout, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginKeepaliveTimeout:
            fmt.Println(cloudfront.ErrCodeInvalidOriginKeepaliveTimeout, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) CreateDistributionRequest

func (c *CloudFront) CreateDistributionRequest(input *CreateDistributionInput) (req *request.Request, output *CreateDistributionOutput)

CreateDistributionRequest generates a "aws/request.Request" representing the client's request for the CreateDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateDistributionRequest method.
req, resp := client.CreateDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistribution

func (*CloudFront) CreateDistributionWithContext

func (c *CloudFront) CreateDistributionWithContext(ctx aws.Context, input *CreateDistributionInput, opts ...request.Option) (*CreateDistributionOutput, error)

CreateDistributionWithContext is the same as CreateDistribution with the addition of the ability to pass a context and additional request options.

See CreateDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) CreateDistributionWithTags

func (c *CloudFront) CreateDistributionWithTags(input *CreateDistributionWithTagsInput) (*CreateDistributionWithTagsOutput, error)

CreateDistributionWithTags API operation for Amazon CloudFront.

Create a new distribution with tags.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation CreateDistributionWithTags for usage and error information.

Returned Error Codes:

* ErrCodeCNAMEAlreadyExists "CNAMEAlreadyExists"

* ErrCodeDistributionAlreadyExists "DistributionAlreadyExists"
The caller reference you attempted to create the distribution with is associated
with another distribution.

* ErrCodeInvalidOrigin "InvalidOrigin"
The Amazon S3 origin server specified does not refer to a valid Amazon S3
bucket.

* ErrCodeInvalidOriginAccessIdentity "InvalidOriginAccessIdentity"
The origin access identity is not valid or doesn't exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeTooManyTrustedSigners "TooManyTrustedSigners"
Your request contains more trusted signers than are allowed per distribution.

* ErrCodeTrustedSignerDoesNotExist "TrustedSignerDoesNotExist"
One or more of your trusted signers do not exist.

* ErrCodeInvalidViewerCertificate "InvalidViewerCertificate"

* ErrCodeInvalidMinimumProtocolVersion "InvalidMinimumProtocolVersion"

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeTooManyDistributionCNAMEs "TooManyDistributionCNAMEs"
Your request contains more CNAMEs than are allowed per distribution.

* ErrCodeTooManyDistributions "TooManyDistributions"
Processing your request would cause you to exceed the maximum number of distributions
allowed.

* ErrCodeInvalidDefaultRootObject "InvalidDefaultRootObject"
The default root object file name is too big or contains an invalid character.

* ErrCodeInvalidRelativePath "InvalidRelativePath"
The relative path is too big, is not URL-encoded, or does not begin with
a slash (/).

* ErrCodeInvalidErrorCode "InvalidErrorCode"

* ErrCodeInvalidResponseCode "InvalidResponseCode"

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidRequiredProtocol "InvalidRequiredProtocol"
This operation requires the HTTPS protocol. Ensure that you specify the HTTPS
protocol in your request, or omit the RequiredProtocols element from your
distribution configuration.

* ErrCodeNoSuchOrigin "NoSuchOrigin"
No origin exists with the specified Origin Id.

* ErrCodeTooManyOrigins "TooManyOrigins"
You cannot create more origins for the distribution.

* ErrCodeTooManyCacheBehaviors "TooManyCacheBehaviors"
You cannot create more cache behaviors for the distribution.

* ErrCodeTooManyCookieNamesInWhiteList "TooManyCookieNamesInWhiteList"
Your request contains more cookie names in the whitelist than are allowed
per cache behavior.

* ErrCodeInvalidForwardCookies "InvalidForwardCookies"
Your request contains forward cookies option which doesn't match with the
expectation for the whitelisted list of cookie names. Either list of cookie
names has been specified when not allowed or list of cookie names is missing
when expected.

* ErrCodeTooManyHeadersInForwardedValues "TooManyHeadersInForwardedValues"

* ErrCodeInvalidHeadersForS3Origin "InvalidHeadersForS3Origin"

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

* ErrCodeTooManyCertificates "TooManyCertificates"
You cannot create anymore custom SSL/TLS certificates.

* ErrCodeInvalidLocationCode "InvalidLocationCode"

* ErrCodeInvalidGeoRestrictionParameter "InvalidGeoRestrictionParameter"

* ErrCodeInvalidProtocolSettings "InvalidProtocolSettings"
You cannot specify SSLv3 as the minimum protocol version if you only want
to support only clients that support Server Name Indication (SNI).

* ErrCodeInvalidTTLOrder "InvalidTTLOrder"

* ErrCodeInvalidWebACLId "InvalidWebACLId"

* ErrCodeTooManyOriginCustomHeaders "TooManyOriginCustomHeaders"

* ErrCodeInvalidTagging "InvalidTagging"

* ErrCodeTooManyQueryStringParameters "TooManyQueryStringParameters"

* ErrCodeInvalidQueryStringParameters "InvalidQueryStringParameters"

* ErrCodeTooManyDistributionsWithLambdaAssociations "TooManyDistributionsWithLambdaAssociations"
Processing your request would cause the maximum number of distributions with
Lambda function associations per owner to be exceeded.

* ErrCodeTooManyLambdaFunctionAssociations "TooManyLambdaFunctionAssociations"
Your request contains more Lambda function associations than are allowed
per distribution.

* ErrCodeInvalidLambdaFunctionAssociation "InvalidLambdaFunctionAssociation"
The specified Lambda function association is invalid.

* ErrCodeInvalidOriginReadTimeout "InvalidOriginReadTimeout"

* ErrCodeInvalidOriginKeepaliveTimeout "InvalidOriginKeepaliveTimeout"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistributionWithTags

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.CreateDistributionWithTagsInput{}

result, err := svc.CreateDistributionWithTags(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeCNAMEAlreadyExists:
            fmt.Println(cloudfront.ErrCodeCNAMEAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeDistributionAlreadyExists:
            fmt.Println(cloudfront.ErrCodeDistributionAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeInvalidOrigin:
            fmt.Println(cloudfront.ErrCodeInvalidOrigin, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeInvalidOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeTooManyTrustedSigners:
            fmt.Println(cloudfront.ErrCodeTooManyTrustedSigners, aerr.Error())
        case cloudfront.ErrCodeTrustedSignerDoesNotExist:
            fmt.Println(cloudfront.ErrCodeTrustedSignerDoesNotExist, aerr.Error())
        case cloudfront.ErrCodeInvalidViewerCertificate:
            fmt.Println(cloudfront.ErrCodeInvalidViewerCertificate, aerr.Error())
        case cloudfront.ErrCodeInvalidMinimumProtocolVersion:
            fmt.Println(cloudfront.ErrCodeInvalidMinimumProtocolVersion, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributionCNAMEs:
            fmt.Println(cloudfront.ErrCodeTooManyDistributionCNAMEs, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributions:
            fmt.Println(cloudfront.ErrCodeTooManyDistributions, aerr.Error())
        case cloudfront.ErrCodeInvalidDefaultRootObject:
            fmt.Println(cloudfront.ErrCodeInvalidDefaultRootObject, aerr.Error())
        case cloudfront.ErrCodeInvalidRelativePath:
            fmt.Println(cloudfront.ErrCodeInvalidRelativePath, aerr.Error())
        case cloudfront.ErrCodeInvalidErrorCode:
            fmt.Println(cloudfront.ErrCodeInvalidErrorCode, aerr.Error())
        case cloudfront.ErrCodeInvalidResponseCode:
            fmt.Println(cloudfront.ErrCodeInvalidResponseCode, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidRequiredProtocol:
            fmt.Println(cloudfront.ErrCodeInvalidRequiredProtocol, aerr.Error())
        case cloudfront.ErrCodeNoSuchOrigin:
            fmt.Println(cloudfront.ErrCodeNoSuchOrigin, aerr.Error())
        case cloudfront.ErrCodeTooManyOrigins:
            fmt.Println(cloudfront.ErrCodeTooManyOrigins, aerr.Error())
        case cloudfront.ErrCodeTooManyCacheBehaviors:
            fmt.Println(cloudfront.ErrCodeTooManyCacheBehaviors, aerr.Error())
        case cloudfront.ErrCodeTooManyCookieNamesInWhiteList:
            fmt.Println(cloudfront.ErrCodeTooManyCookieNamesInWhiteList, aerr.Error())
        case cloudfront.ErrCodeInvalidForwardCookies:
            fmt.Println(cloudfront.ErrCodeInvalidForwardCookies, aerr.Error())
        case cloudfront.ErrCodeTooManyHeadersInForwardedValues:
            fmt.Println(cloudfront.ErrCodeTooManyHeadersInForwardedValues, aerr.Error())
        case cloudfront.ErrCodeInvalidHeadersForS3Origin:
            fmt.Println(cloudfront.ErrCodeInvalidHeadersForS3Origin, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        case cloudfront.ErrCodeTooManyCertificates:
            fmt.Println(cloudfront.ErrCodeTooManyCertificates, aerr.Error())
        case cloudfront.ErrCodeInvalidLocationCode:
            fmt.Println(cloudfront.ErrCodeInvalidLocationCode, aerr.Error())
        case cloudfront.ErrCodeInvalidGeoRestrictionParameter:
            fmt.Println(cloudfront.ErrCodeInvalidGeoRestrictionParameter, aerr.Error())
        case cloudfront.ErrCodeInvalidProtocolSettings:
            fmt.Println(cloudfront.ErrCodeInvalidProtocolSettings, aerr.Error())
        case cloudfront.ErrCodeInvalidTTLOrder:
            fmt.Println(cloudfront.ErrCodeInvalidTTLOrder, aerr.Error())
        case cloudfront.ErrCodeInvalidWebACLId:
            fmt.Println(cloudfront.ErrCodeInvalidWebACLId, aerr.Error())
        case cloudfront.ErrCodeTooManyOriginCustomHeaders:
            fmt.Println(cloudfront.ErrCodeTooManyOriginCustomHeaders, aerr.Error())
        case cloudfront.ErrCodeInvalidTagging:
            fmt.Println(cloudfront.ErrCodeInvalidTagging, aerr.Error())
        case cloudfront.ErrCodeTooManyQueryStringParameters:
            fmt.Println(cloudfront.ErrCodeTooManyQueryStringParameters, aerr.Error())
        case cloudfront.ErrCodeInvalidQueryStringParameters:
            fmt.Println(cloudfront.ErrCodeInvalidQueryStringParameters, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributionsWithLambdaAssociations:
            fmt.Println(cloudfront.ErrCodeTooManyDistributionsWithLambdaAssociations, aerr.Error())
        case cloudfront.ErrCodeTooManyLambdaFunctionAssociations:
            fmt.Println(cloudfront.ErrCodeTooManyLambdaFunctionAssociations, aerr.Error())
        case cloudfront.ErrCodeInvalidLambdaFunctionAssociation:
            fmt.Println(cloudfront.ErrCodeInvalidLambdaFunctionAssociation, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginReadTimeout:
            fmt.Println(cloudfront.ErrCodeInvalidOriginReadTimeout, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginKeepaliveTimeout:
            fmt.Println(cloudfront.ErrCodeInvalidOriginKeepaliveTimeout, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) CreateDistributionWithTagsRequest

func (c *CloudFront) CreateDistributionWithTagsRequest(input *CreateDistributionWithTagsInput) (req *request.Request, output *CreateDistributionWithTagsOutput)

CreateDistributionWithTagsRequest generates a "aws/request.Request" representing the client's request for the CreateDistributionWithTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateDistributionWithTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateDistributionWithTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateDistributionWithTagsRequest method.
req, resp := client.CreateDistributionWithTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistributionWithTags

func (*CloudFront) CreateDistributionWithTagsWithContext

func (c *CloudFront) CreateDistributionWithTagsWithContext(ctx aws.Context, input *CreateDistributionWithTagsInput, opts ...request.Option) (*CreateDistributionWithTagsOutput, error)

CreateDistributionWithTagsWithContext is the same as CreateDistributionWithTags with the addition of the ability to pass a context and additional request options.

See CreateDistributionWithTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) CreateInvalidation

func (c *CloudFront) CreateInvalidation(input *CreateInvalidationInput) (*CreateInvalidationOutput, error)

CreateInvalidation API operation for Amazon CloudFront.

Create a new invalidation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation CreateInvalidation for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeNoSuchDistribution "NoSuchDistribution"
The specified distribution does not exist.

* ErrCodeBatchTooLarge "BatchTooLarge"

* ErrCodeTooManyInvalidationsInProgress "TooManyInvalidationsInProgress"
You have exceeded the maximum number of allowable InProgress invalidation
batch requests, or invalidation objects.

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateInvalidation

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.CreateInvalidationInput{}

result, err := svc.CreateInvalidation(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeNoSuchDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchDistribution, aerr.Error())
        case cloudfront.ErrCodeBatchTooLarge:
            fmt.Println(cloudfront.ErrCodeBatchTooLarge, aerr.Error())
        case cloudfront.ErrCodeTooManyInvalidationsInProgress:
            fmt.Println(cloudfront.ErrCodeTooManyInvalidationsInProgress, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) CreateInvalidationRequest

func (c *CloudFront) CreateInvalidationRequest(input *CreateInvalidationInput) (req *request.Request, output *CreateInvalidationOutput)

CreateInvalidationRequest generates a "aws/request.Request" representing the client's request for the CreateInvalidation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateInvalidation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateInvalidation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateInvalidationRequest method.
req, resp := client.CreateInvalidationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateInvalidation

func (*CloudFront) CreateInvalidationWithContext

func (c *CloudFront) CreateInvalidationWithContext(ctx aws.Context, input *CreateInvalidationInput, opts ...request.Option) (*CreateInvalidationOutput, error)

CreateInvalidationWithContext is the same as CreateInvalidation with the addition of the ability to pass a context and additional request options.

See CreateInvalidation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) CreateStreamingDistribution

func (c *CloudFront) CreateStreamingDistribution(input *CreateStreamingDistributionInput) (*CreateStreamingDistributionOutput, error)

CreateStreamingDistribution API operation for Amazon CloudFront.

Creates a new RMTP distribution. An RTMP distribution is similar to a web distribution, but an RTMP distribution streams media files using the Adobe Real-Time Messaging Protocol (RTMP) instead of serving files using HTTP.

To create a new web distribution, submit a POST request to the CloudFront API version/distribution resource. The request body must include a document with a StreamingDistributionConfig element. The response echoes the StreamingDistributionConfig element and returns other information about the RTMP distribution.

To get the status of your request, use the GET StreamingDistribution API action. When the value of Enabled is true and the value of Status is Deployed, your distribution is ready. A distribution usually deploys in less than 15 minutes.

For more information about web distributions, see Working with RTMP Distributions (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-rtmp.html) in the Amazon CloudFront Developer Guide.

Beginning with the 2012-05-05 version of the CloudFront API, we made substantial changes to the format of the XML document that you include in the request body when you create or update a web distribution or an RTMP distribution, and when you invalidate objects. With previous versions of the API, we discovered that it was too easy to accidentally delete one or more values for an element that accepts multiple values, for example, CNAMEs and trusted signers. Our changes for the 2012-05-05 release are intended to prevent these accidental deletions and to notify you when there's a mismatch between the number of values you say you're specifying in the Quantity element and the number of values specified.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation CreateStreamingDistribution for usage and error information.

Returned Error Codes:

* ErrCodeCNAMEAlreadyExists "CNAMEAlreadyExists"

* ErrCodeStreamingDistributionAlreadyExists "StreamingDistributionAlreadyExists"

* ErrCodeInvalidOrigin "InvalidOrigin"
The Amazon S3 origin server specified does not refer to a valid Amazon S3
bucket.

* ErrCodeInvalidOriginAccessIdentity "InvalidOriginAccessIdentity"
The origin access identity is not valid or doesn't exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeTooManyTrustedSigners "TooManyTrustedSigners"
Your request contains more trusted signers than are allowed per distribution.

* ErrCodeTrustedSignerDoesNotExist "TrustedSignerDoesNotExist"
One or more of your trusted signers do not exist.

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeTooManyStreamingDistributionCNAMEs "TooManyStreamingDistributionCNAMEs"

* ErrCodeTooManyStreamingDistributions "TooManyStreamingDistributions"
Processing your request would cause you to exceed the maximum number of streaming
distributions allowed.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.CreateStreamingDistributionInput{}

result, err := svc.CreateStreamingDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeCNAMEAlreadyExists:
            fmt.Println(cloudfront.ErrCodeCNAMEAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeStreamingDistributionAlreadyExists:
            fmt.Println(cloudfront.ErrCodeStreamingDistributionAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeInvalidOrigin:
            fmt.Println(cloudfront.ErrCodeInvalidOrigin, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeInvalidOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeTooManyTrustedSigners:
            fmt.Println(cloudfront.ErrCodeTooManyTrustedSigners, aerr.Error())
        case cloudfront.ErrCodeTrustedSignerDoesNotExist:
            fmt.Println(cloudfront.ErrCodeTrustedSignerDoesNotExist, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeTooManyStreamingDistributionCNAMEs:
            fmt.Println(cloudfront.ErrCodeTooManyStreamingDistributionCNAMEs, aerr.Error())
        case cloudfront.ErrCodeTooManyStreamingDistributions:
            fmt.Println(cloudfront.ErrCodeTooManyStreamingDistributions, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) CreateStreamingDistributionRequest

func (c *CloudFront) CreateStreamingDistributionRequest(input *CreateStreamingDistributionInput) (req *request.Request, output *CreateStreamingDistributionOutput)

CreateStreamingDistributionRequest generates a "aws/request.Request" representing the client's request for the CreateStreamingDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateStreamingDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateStreamingDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateStreamingDistributionRequest method.
req, resp := client.CreateStreamingDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistribution

func (*CloudFront) CreateStreamingDistributionWithContext

func (c *CloudFront) CreateStreamingDistributionWithContext(ctx aws.Context, input *CreateStreamingDistributionInput, opts ...request.Option) (*CreateStreamingDistributionOutput, error)

CreateStreamingDistributionWithContext is the same as CreateStreamingDistribution with the addition of the ability to pass a context and additional request options.

See CreateStreamingDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) CreateStreamingDistributionWithTags

func (c *CloudFront) CreateStreamingDistributionWithTags(input *CreateStreamingDistributionWithTagsInput) (*CreateStreamingDistributionWithTagsOutput, error)

CreateStreamingDistributionWithTags API operation for Amazon CloudFront.

Create a new streaming distribution with tags.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation CreateStreamingDistributionWithTags for usage and error information.

Returned Error Codes:

* ErrCodeCNAMEAlreadyExists "CNAMEAlreadyExists"

* ErrCodeStreamingDistributionAlreadyExists "StreamingDistributionAlreadyExists"

* ErrCodeInvalidOrigin "InvalidOrigin"
The Amazon S3 origin server specified does not refer to a valid Amazon S3
bucket.

* ErrCodeInvalidOriginAccessIdentity "InvalidOriginAccessIdentity"
The origin access identity is not valid or doesn't exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeTooManyTrustedSigners "TooManyTrustedSigners"
Your request contains more trusted signers than are allowed per distribution.

* ErrCodeTrustedSignerDoesNotExist "TrustedSignerDoesNotExist"
One or more of your trusted signers do not exist.

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeTooManyStreamingDistributionCNAMEs "TooManyStreamingDistributionCNAMEs"

* ErrCodeTooManyStreamingDistributions "TooManyStreamingDistributions"
Processing your request would cause you to exceed the maximum number of streaming
distributions allowed.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

* ErrCodeInvalidTagging "InvalidTagging"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistributionWithTags

func (*CloudFront) CreateStreamingDistributionWithTagsRequest

func (c *CloudFront) CreateStreamingDistributionWithTagsRequest(input *CreateStreamingDistributionWithTagsInput) (req *request.Request, output *CreateStreamingDistributionWithTagsOutput)

CreateStreamingDistributionWithTagsRequest generates a "aws/request.Request" representing the client's request for the CreateStreamingDistributionWithTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateStreamingDistributionWithTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateStreamingDistributionWithTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateStreamingDistributionWithTagsRequest method.
req, resp := client.CreateStreamingDistributionWithTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistributionWithTags

func (*CloudFront) CreateStreamingDistributionWithTagsWithContext

func (c *CloudFront) CreateStreamingDistributionWithTagsWithContext(ctx aws.Context, input *CreateStreamingDistributionWithTagsInput, opts ...request.Option) (*CreateStreamingDistributionWithTagsOutput, error)

CreateStreamingDistributionWithTagsWithContext is the same as CreateStreamingDistributionWithTags with the addition of the ability to pass a context and additional request options.

See CreateStreamingDistributionWithTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) DeleteCloudFrontOriginAccessIdentity

func (c *CloudFront) DeleteCloudFrontOriginAccessIdentity(input *DeleteCloudFrontOriginAccessIdentityInput) (*DeleteCloudFrontOriginAccessIdentityOutput, error)

DeleteCloudFrontOriginAccessIdentity API operation for Amazon CloudFront.

Delete an origin access identity.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation DeleteCloudFrontOriginAccessIdentity for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeInvalidIfMatchVersion "InvalidIfMatchVersion"
The If-Match version is missing or not valid for the distribution.

* ErrCodeNoSuchCloudFrontOriginAccessIdentity "NoSuchCloudFrontOriginAccessIdentity"
The specified origin access identity does not exist.

* ErrCodePreconditionFailed "PreconditionFailed"
The precondition given in one or more of the request-header fields evaluated
to false.

* ErrCodeOriginAccessIdentityInUse "OriginAccessIdentityInUse"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteCloudFrontOriginAccessIdentity

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.DeleteCloudFrontOriginAccessIdentityInput{}

result, err := svc.DeleteCloudFrontOriginAccessIdentity(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeInvalidIfMatchVersion:
            fmt.Println(cloudfront.ErrCodeInvalidIfMatchVersion, aerr.Error())
        case cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodePreconditionFailed:
            fmt.Println(cloudfront.ErrCodePreconditionFailed, aerr.Error())
        case cloudfront.ErrCodeOriginAccessIdentityInUse:
            fmt.Println(cloudfront.ErrCodeOriginAccessIdentityInUse, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) DeleteCloudFrontOriginAccessIdentityRequest

func (c *CloudFront) DeleteCloudFrontOriginAccessIdentityRequest(input *DeleteCloudFrontOriginAccessIdentityInput) (req *request.Request, output *DeleteCloudFrontOriginAccessIdentityOutput)

DeleteCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the client's request for the DeleteCloudFrontOriginAccessIdentity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteCloudFrontOriginAccessIdentity for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteCloudFrontOriginAccessIdentity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteCloudFrontOriginAccessIdentityRequest method.
req, resp := client.DeleteCloudFrontOriginAccessIdentityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteCloudFrontOriginAccessIdentity

func (*CloudFront) DeleteCloudFrontOriginAccessIdentityWithContext

func (c *CloudFront) DeleteCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *DeleteCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*DeleteCloudFrontOriginAccessIdentityOutput, error)

DeleteCloudFrontOriginAccessIdentityWithContext is the same as DeleteCloudFrontOriginAccessIdentity with the addition of the ability to pass a context and additional request options.

See DeleteCloudFrontOriginAccessIdentity for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) DeleteDistribution

func (c *CloudFront) DeleteDistribution(input *DeleteDistributionInput) (*DeleteDistributionOutput, error)

DeleteDistribution API operation for Amazon CloudFront.

Delete a distribution.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation DeleteDistribution for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeDistributionNotDisabled "DistributionNotDisabled"

* ErrCodeInvalidIfMatchVersion "InvalidIfMatchVersion"
The If-Match version is missing or not valid for the distribution.

* ErrCodeNoSuchDistribution "NoSuchDistribution"
The specified distribution does not exist.

* ErrCodePreconditionFailed "PreconditionFailed"
The precondition given in one or more of the request-header fields evaluated
to false.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.DeleteDistributionInput{}

result, err := svc.DeleteDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeDistributionNotDisabled:
            fmt.Println(cloudfront.ErrCodeDistributionNotDisabled, aerr.Error())
        case cloudfront.ErrCodeInvalidIfMatchVersion:
            fmt.Println(cloudfront.ErrCodeInvalidIfMatchVersion, aerr.Error())
        case cloudfront.ErrCodeNoSuchDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchDistribution, aerr.Error())
        case cloudfront.ErrCodePreconditionFailed:
            fmt.Println(cloudfront.ErrCodePreconditionFailed, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) DeleteDistributionRequest

func (c *CloudFront) DeleteDistributionRequest(input *DeleteDistributionInput) (req *request.Request, output *DeleteDistributionOutput)

DeleteDistributionRequest generates a "aws/request.Request" representing the client's request for the DeleteDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteDistributionRequest method.
req, resp := client.DeleteDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteDistribution

func (*CloudFront) DeleteDistributionWithContext

func (c *CloudFront) DeleteDistributionWithContext(ctx aws.Context, input *DeleteDistributionInput, opts ...request.Option) (*DeleteDistributionOutput, error)

DeleteDistributionWithContext is the same as DeleteDistribution with the addition of the ability to pass a context and additional request options.

See DeleteDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) DeleteStreamingDistribution

func (c *CloudFront) DeleteStreamingDistribution(input *DeleteStreamingDistributionInput) (*DeleteStreamingDistributionOutput, error)

DeleteStreamingDistribution API operation for Amazon CloudFront.

Delete a streaming distribution. To delete an RTMP distribution using the CloudFront API, perform the following steps.

To delete an RTMP distribution using the CloudFront API:

Disable the RTMP distribution.

Submit a GET Streaming Distribution Config request to get the current configuration and the Etag header for the distribution.

Update the XML document that was returned in the response to your GET Streaming Distribution Config request to change the value of Enabled to false.

Submit a PUT Streaming Distribution Config request to update the configuration for your distribution. In the request body, include the XML document that you updated in Step 3. Then set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2.

Review the response to the PUT Streaming Distribution Config request to confirm that the distribution was successfully disabled.

Submit a GET Streaming Distribution Config request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed.

Submit a DELETE Streaming Distribution request. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2.

Review the response to your DELETE Streaming Distribution request to confirm that the distribution was successfully deleted.

For information about deleting a distribution using the CloudFront console, see Deleting a Distribution (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/HowToDeleteDistribution.html) in the Amazon CloudFront Developer Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation DeleteStreamingDistribution for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeStreamingDistributionNotDisabled "StreamingDistributionNotDisabled"

* ErrCodeInvalidIfMatchVersion "InvalidIfMatchVersion"
The If-Match version is missing or not valid for the distribution.

* ErrCodeNoSuchStreamingDistribution "NoSuchStreamingDistribution"
The specified streaming distribution does not exist.

* ErrCodePreconditionFailed "PreconditionFailed"
The precondition given in one or more of the request-header fields evaluated
to false.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteStreamingDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.DeleteStreamingDistributionInput{}

result, err := svc.DeleteStreamingDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeStreamingDistributionNotDisabled:
            fmt.Println(cloudfront.ErrCodeStreamingDistributionNotDisabled, aerr.Error())
        case cloudfront.ErrCodeInvalidIfMatchVersion:
            fmt.Println(cloudfront.ErrCodeInvalidIfMatchVersion, aerr.Error())
        case cloudfront.ErrCodeNoSuchStreamingDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchStreamingDistribution, aerr.Error())
        case cloudfront.ErrCodePreconditionFailed:
            fmt.Println(cloudfront.ErrCodePreconditionFailed, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) DeleteStreamingDistributionRequest

func (c *CloudFront) DeleteStreamingDistributionRequest(input *DeleteStreamingDistributionInput) (req *request.Request, output *DeleteStreamingDistributionOutput)

DeleteStreamingDistributionRequest generates a "aws/request.Request" representing the client's request for the DeleteStreamingDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteStreamingDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteStreamingDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteStreamingDistributionRequest method.
req, resp := client.DeleteStreamingDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteStreamingDistribution

func (*CloudFront) DeleteStreamingDistributionWithContext

func (c *CloudFront) DeleteStreamingDistributionWithContext(ctx aws.Context, input *DeleteStreamingDistributionInput, opts ...request.Option) (*DeleteStreamingDistributionOutput, error)

DeleteStreamingDistributionWithContext is the same as DeleteStreamingDistribution with the addition of the ability to pass a context and additional request options.

See DeleteStreamingDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) GetCloudFrontOriginAccessIdentity

func (c *CloudFront) GetCloudFrontOriginAccessIdentity(input *GetCloudFrontOriginAccessIdentityInput) (*GetCloudFrontOriginAccessIdentityOutput, error)

GetCloudFrontOriginAccessIdentity API operation for Amazon CloudFront.

Get the information about an origin access identity.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation GetCloudFrontOriginAccessIdentity for usage and error information.

Returned Error Codes:

* ErrCodeNoSuchCloudFrontOriginAccessIdentity "NoSuchCloudFrontOriginAccessIdentity"
The specified origin access identity does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentity

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.GetCloudFrontOriginAccessIdentityInput{}

result, err := svc.GetCloudFrontOriginAccessIdentity(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) GetCloudFrontOriginAccessIdentityConfig

func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfig(input *GetCloudFrontOriginAccessIdentityConfigInput) (*GetCloudFrontOriginAccessIdentityConfigOutput, error)

GetCloudFrontOriginAccessIdentityConfig API operation for Amazon CloudFront.

Get the configuration information about an origin access identity.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation GetCloudFrontOriginAccessIdentityConfig for usage and error information.

Returned Error Codes:

* ErrCodeNoSuchCloudFrontOriginAccessIdentity "NoSuchCloudFrontOriginAccessIdentity"
The specified origin access identity does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentityConfig

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.GetCloudFrontOriginAccessIdentityConfigInput{}

result, err := svc.GetCloudFrontOriginAccessIdentityConfig(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) GetCloudFrontOriginAccessIdentityConfigRequest

func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfigRequest(input *GetCloudFrontOriginAccessIdentityConfigInput) (req *request.Request, output *GetCloudFrontOriginAccessIdentityConfigOutput)

GetCloudFrontOriginAccessIdentityConfigRequest generates a "aws/request.Request" representing the client's request for the GetCloudFrontOriginAccessIdentityConfig operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetCloudFrontOriginAccessIdentityConfig for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetCloudFrontOriginAccessIdentityConfig method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetCloudFrontOriginAccessIdentityConfigRequest method.
req, resp := client.GetCloudFrontOriginAccessIdentityConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentityConfig

func (*CloudFront) GetCloudFrontOriginAccessIdentityConfigWithContext

func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfigWithContext(ctx aws.Context, input *GetCloudFrontOriginAccessIdentityConfigInput, opts ...request.Option) (*GetCloudFrontOriginAccessIdentityConfigOutput, error)

GetCloudFrontOriginAccessIdentityConfigWithContext is the same as GetCloudFrontOriginAccessIdentityConfig with the addition of the ability to pass a context and additional request options.

See GetCloudFrontOriginAccessIdentityConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) GetCloudFrontOriginAccessIdentityRequest

func (c *CloudFront) GetCloudFrontOriginAccessIdentityRequest(input *GetCloudFrontOriginAccessIdentityInput) (req *request.Request, output *GetCloudFrontOriginAccessIdentityOutput)

GetCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the client's request for the GetCloudFrontOriginAccessIdentity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetCloudFrontOriginAccessIdentity for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetCloudFrontOriginAccessIdentity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetCloudFrontOriginAccessIdentityRequest method.
req, resp := client.GetCloudFrontOriginAccessIdentityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentity

func (*CloudFront) GetCloudFrontOriginAccessIdentityWithContext

func (c *CloudFront) GetCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *GetCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*GetCloudFrontOriginAccessIdentityOutput, error)

GetCloudFrontOriginAccessIdentityWithContext is the same as GetCloudFrontOriginAccessIdentity with the addition of the ability to pass a context and additional request options.

See GetCloudFrontOriginAccessIdentity for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) GetDistribution

func (c *CloudFront) GetDistribution(input *GetDistributionInput) (*GetDistributionOutput, error)

GetDistribution API operation for Amazon CloudFront.

Get the information about a distribution.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation GetDistribution for usage and error information.

Returned Error Codes:

* ErrCodeNoSuchDistribution "NoSuchDistribution"
The specified distribution does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.GetDistributionInput{}

result, err := svc.GetDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeNoSuchDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchDistribution, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) GetDistributionConfig

func (c *CloudFront) GetDistributionConfig(input *GetDistributionConfigInput) (*GetDistributionConfigOutput, error)

GetDistributionConfig API operation for Amazon CloudFront.

Get the configuration information about a distribution.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation GetDistributionConfig for usage and error information.

Returned Error Codes:

* ErrCodeNoSuchDistribution "NoSuchDistribution"
The specified distribution does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistributionConfig

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.GetDistributionConfigInput{}

result, err := svc.GetDistributionConfig(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeNoSuchDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchDistribution, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) GetDistributionConfigRequest

func (c *CloudFront) GetDistributionConfigRequest(input *GetDistributionConfigInput) (req *request.Request, output *GetDistributionConfigOutput)

GetDistributionConfigRequest generates a "aws/request.Request" representing the client's request for the GetDistributionConfig operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetDistributionConfig for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetDistributionConfig method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetDistributionConfigRequest method.
req, resp := client.GetDistributionConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistributionConfig

func (*CloudFront) GetDistributionConfigWithContext

func (c *CloudFront) GetDistributionConfigWithContext(ctx aws.Context, input *GetDistributionConfigInput, opts ...request.Option) (*GetDistributionConfigOutput, error)

GetDistributionConfigWithContext is the same as GetDistributionConfig with the addition of the ability to pass a context and additional request options.

See GetDistributionConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) GetDistributionRequest

func (c *CloudFront) GetDistributionRequest(input *GetDistributionInput) (req *request.Request, output *GetDistributionOutput)

GetDistributionRequest generates a "aws/request.Request" representing the client's request for the GetDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetDistributionRequest method.
req, resp := client.GetDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistribution

func (*CloudFront) GetDistributionWithContext

func (c *CloudFront) GetDistributionWithContext(ctx aws.Context, input *GetDistributionInput, opts ...request.Option) (*GetDistributionOutput, error)

GetDistributionWithContext is the same as GetDistribution with the addition of the ability to pass a context and additional request options.

See GetDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) GetInvalidation

func (c *CloudFront) GetInvalidation(input *GetInvalidationInput) (*GetInvalidationOutput, error)

GetInvalidation API operation for Amazon CloudFront.

Get the information about an invalidation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation GetInvalidation for usage and error information.

Returned Error Codes:

* ErrCodeNoSuchInvalidation "NoSuchInvalidation"
The specified invalidation does not exist.

* ErrCodeNoSuchDistribution "NoSuchDistribution"
The specified distribution does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetInvalidation

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.GetInvalidationInput{}

result, err := svc.GetInvalidation(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeNoSuchInvalidation:
            fmt.Println(cloudfront.ErrCodeNoSuchInvalidation, aerr.Error())
        case cloudfront.ErrCodeNoSuchDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchDistribution, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) GetInvalidationRequest

func (c *CloudFront) GetInvalidationRequest(input *GetInvalidationInput) (req *request.Request, output *GetInvalidationOutput)

GetInvalidationRequest generates a "aws/request.Request" representing the client's request for the GetInvalidation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetInvalidation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetInvalidation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetInvalidationRequest method.
req, resp := client.GetInvalidationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetInvalidation

func (*CloudFront) GetInvalidationWithContext

func (c *CloudFront) GetInvalidationWithContext(ctx aws.Context, input *GetInvalidationInput, opts ...request.Option) (*GetInvalidationOutput, error)

GetInvalidationWithContext is the same as GetInvalidation with the addition of the ability to pass a context and additional request options.

See GetInvalidation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) GetStreamingDistribution

func (c *CloudFront) GetStreamingDistribution(input *GetStreamingDistributionInput) (*GetStreamingDistributionOutput, error)

GetStreamingDistribution API operation for Amazon CloudFront.

Gets information about a specified RTMP distribution, including the distribution configuration.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation GetStreamingDistribution for usage and error information.

Returned Error Codes:

* ErrCodeNoSuchStreamingDistribution "NoSuchStreamingDistribution"
The specified streaming distribution does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.GetStreamingDistributionInput{}

result, err := svc.GetStreamingDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeNoSuchStreamingDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchStreamingDistribution, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) GetStreamingDistributionConfig

func (c *CloudFront) GetStreamingDistributionConfig(input *GetStreamingDistributionConfigInput) (*GetStreamingDistributionConfigOutput, error)

GetStreamingDistributionConfig API operation for Amazon CloudFront.

Get the configuration information about a streaming distribution.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation GetStreamingDistributionConfig for usage and error information.

Returned Error Codes:

* ErrCodeNoSuchStreamingDistribution "NoSuchStreamingDistribution"
The specified streaming distribution does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistributionConfig

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.GetStreamingDistributionConfigInput{}

result, err := svc.GetStreamingDistributionConfig(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeNoSuchStreamingDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchStreamingDistribution, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) GetStreamingDistributionConfigRequest

func (c *CloudFront) GetStreamingDistributionConfigRequest(input *GetStreamingDistributionConfigInput) (req *request.Request, output *GetStreamingDistributionConfigOutput)

GetStreamingDistributionConfigRequest generates a "aws/request.Request" representing the client's request for the GetStreamingDistributionConfig operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetStreamingDistributionConfig for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetStreamingDistributionConfig method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetStreamingDistributionConfigRequest method.
req, resp := client.GetStreamingDistributionConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistributionConfig

func (*CloudFront) GetStreamingDistributionConfigWithContext

func (c *CloudFront) GetStreamingDistributionConfigWithContext(ctx aws.Context, input *GetStreamingDistributionConfigInput, opts ...request.Option) (*GetStreamingDistributionConfigOutput, error)

GetStreamingDistributionConfigWithContext is the same as GetStreamingDistributionConfig with the addition of the ability to pass a context and additional request options.

See GetStreamingDistributionConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) GetStreamingDistributionRequest

func (c *CloudFront) GetStreamingDistributionRequest(input *GetStreamingDistributionInput) (req *request.Request, output *GetStreamingDistributionOutput)

GetStreamingDistributionRequest generates a "aws/request.Request" representing the client's request for the GetStreamingDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetStreamingDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetStreamingDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetStreamingDistributionRequest method.
req, resp := client.GetStreamingDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistribution

func (*CloudFront) GetStreamingDistributionWithContext

func (c *CloudFront) GetStreamingDistributionWithContext(ctx aws.Context, input *GetStreamingDistributionInput, opts ...request.Option) (*GetStreamingDistributionOutput, error)

GetStreamingDistributionWithContext is the same as GetStreamingDistribution with the addition of the ability to pass a context and additional request options.

See GetStreamingDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListCloudFrontOriginAccessIdentities

func (c *CloudFront) ListCloudFrontOriginAccessIdentities(input *ListCloudFrontOriginAccessIdentitiesInput) (*ListCloudFrontOriginAccessIdentitiesOutput, error)

ListCloudFrontOriginAccessIdentities API operation for Amazon CloudFront.

Lists origin access identities.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation ListCloudFrontOriginAccessIdentities for usage and error information.

Returned Error Codes:

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListCloudFrontOriginAccessIdentities

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.ListCloudFrontOriginAccessIdentitiesInput{}

result, err := svc.ListCloudFrontOriginAccessIdentities(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) ListCloudFrontOriginAccessIdentitiesPages

func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesPages(input *ListCloudFrontOriginAccessIdentitiesInput, fn func(*ListCloudFrontOriginAccessIdentitiesOutput, bool) bool) error

ListCloudFrontOriginAccessIdentitiesPages iterates over the pages of a ListCloudFrontOriginAccessIdentities operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListCloudFrontOriginAccessIdentities method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListCloudFrontOriginAccessIdentities operation.
pageNum := 0
err := client.ListCloudFrontOriginAccessIdentitiesPages(params,
    func(page *ListCloudFrontOriginAccessIdentitiesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudFront) ListCloudFrontOriginAccessIdentitiesPagesWithContext

func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesPagesWithContext(ctx aws.Context, input *ListCloudFrontOriginAccessIdentitiesInput, fn func(*ListCloudFrontOriginAccessIdentitiesOutput, bool) bool, opts ...request.Option) error

ListCloudFrontOriginAccessIdentitiesPagesWithContext same as ListCloudFrontOriginAccessIdentitiesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListCloudFrontOriginAccessIdentitiesRequest

func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesRequest(input *ListCloudFrontOriginAccessIdentitiesInput) (req *request.Request, output *ListCloudFrontOriginAccessIdentitiesOutput)

ListCloudFrontOriginAccessIdentitiesRequest generates a "aws/request.Request" representing the client's request for the ListCloudFrontOriginAccessIdentities operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListCloudFrontOriginAccessIdentities for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListCloudFrontOriginAccessIdentities method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListCloudFrontOriginAccessIdentitiesRequest method.
req, resp := client.ListCloudFrontOriginAccessIdentitiesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListCloudFrontOriginAccessIdentities

func (*CloudFront) ListCloudFrontOriginAccessIdentitiesWithContext

func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesWithContext(ctx aws.Context, input *ListCloudFrontOriginAccessIdentitiesInput, opts ...request.Option) (*ListCloudFrontOriginAccessIdentitiesOutput, error)

ListCloudFrontOriginAccessIdentitiesWithContext is the same as ListCloudFrontOriginAccessIdentities with the addition of the ability to pass a context and additional request options.

See ListCloudFrontOriginAccessIdentities for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListDistributions

func (c *CloudFront) ListDistributions(input *ListDistributionsInput) (*ListDistributionsOutput, error)

ListDistributions API operation for Amazon CloudFront.

List distributions.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation ListDistributions for usage and error information.

Returned Error Codes:

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributions

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.ListDistributionsInput{}

result, err := svc.ListDistributions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) ListDistributionsByWebACLId

func (c *CloudFront) ListDistributionsByWebACLId(input *ListDistributionsByWebACLIdInput) (*ListDistributionsByWebACLIdOutput, error)

ListDistributionsByWebACLId API operation for Amazon CloudFront.

List the distributions that are associated with a specified AWS WAF web ACL.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation ListDistributionsByWebACLId for usage and error information.

Returned Error Codes:

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidWebACLId "InvalidWebACLId"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributionsByWebACLId

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.ListDistributionsByWebACLIdInput{}

result, err := svc.ListDistributionsByWebACLId(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidWebACLId:
            fmt.Println(cloudfront.ErrCodeInvalidWebACLId, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) ListDistributionsByWebACLIdRequest

func (c *CloudFront) ListDistributionsByWebACLIdRequest(input *ListDistributionsByWebACLIdInput) (req *request.Request, output *ListDistributionsByWebACLIdOutput)

ListDistributionsByWebACLIdRequest generates a "aws/request.Request" representing the client's request for the ListDistributionsByWebACLId operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListDistributionsByWebACLId for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListDistributionsByWebACLId method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListDistributionsByWebACLIdRequest method.
req, resp := client.ListDistributionsByWebACLIdRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributionsByWebACLId

func (*CloudFront) ListDistributionsByWebACLIdWithContext

func (c *CloudFront) ListDistributionsByWebACLIdWithContext(ctx aws.Context, input *ListDistributionsByWebACLIdInput, opts ...request.Option) (*ListDistributionsByWebACLIdOutput, error)

ListDistributionsByWebACLIdWithContext is the same as ListDistributionsByWebACLId with the addition of the ability to pass a context and additional request options.

See ListDistributionsByWebACLId for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListDistributionsPages

func (c *CloudFront) ListDistributionsPages(input *ListDistributionsInput, fn func(*ListDistributionsOutput, bool) bool) error

ListDistributionsPages iterates over the pages of a ListDistributions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDistributions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListDistributions operation.
pageNum := 0
err := client.ListDistributionsPages(params,
    func(page *ListDistributionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudFront) ListDistributionsPagesWithContext

func (c *CloudFront) ListDistributionsPagesWithContext(ctx aws.Context, input *ListDistributionsInput, fn func(*ListDistributionsOutput, bool) bool, opts ...request.Option) error

ListDistributionsPagesWithContext same as ListDistributionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListDistributionsRequest

func (c *CloudFront) ListDistributionsRequest(input *ListDistributionsInput) (req *request.Request, output *ListDistributionsOutput)

ListDistributionsRequest generates a "aws/request.Request" representing the client's request for the ListDistributions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListDistributions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListDistributions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListDistributionsRequest method.
req, resp := client.ListDistributionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributions

func (*CloudFront) ListDistributionsWithContext

func (c *CloudFront) ListDistributionsWithContext(ctx aws.Context, input *ListDistributionsInput, opts ...request.Option) (*ListDistributionsOutput, error)

ListDistributionsWithContext is the same as ListDistributions with the addition of the ability to pass a context and additional request options.

See ListDistributions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListInvalidations

func (c *CloudFront) ListInvalidations(input *ListInvalidationsInput) (*ListInvalidationsOutput, error)

ListInvalidations API operation for Amazon CloudFront.

Lists invalidation batches.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation ListInvalidations for usage and error information.

Returned Error Codes:

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeNoSuchDistribution "NoSuchDistribution"
The specified distribution does not exist.

* ErrCodeAccessDenied "AccessDenied"
Access denied.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListInvalidations

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.ListInvalidationsInput{}

result, err := svc.ListInvalidations(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeNoSuchDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchDistribution, aerr.Error())
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) ListInvalidationsPages

func (c *CloudFront) ListInvalidationsPages(input *ListInvalidationsInput, fn func(*ListInvalidationsOutput, bool) bool) error

ListInvalidationsPages iterates over the pages of a ListInvalidations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListInvalidations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListInvalidations operation.
pageNum := 0
err := client.ListInvalidationsPages(params,
    func(page *ListInvalidationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudFront) ListInvalidationsPagesWithContext

func (c *CloudFront) ListInvalidationsPagesWithContext(ctx aws.Context, input *ListInvalidationsInput, fn func(*ListInvalidationsOutput, bool) bool, opts ...request.Option) error

ListInvalidationsPagesWithContext same as ListInvalidationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListInvalidationsRequest

func (c *CloudFront) ListInvalidationsRequest(input *ListInvalidationsInput) (req *request.Request, output *ListInvalidationsOutput)

ListInvalidationsRequest generates a "aws/request.Request" representing the client's request for the ListInvalidations operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListInvalidations for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListInvalidations method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListInvalidationsRequest method.
req, resp := client.ListInvalidationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListInvalidations

func (*CloudFront) ListInvalidationsWithContext

func (c *CloudFront) ListInvalidationsWithContext(ctx aws.Context, input *ListInvalidationsInput, opts ...request.Option) (*ListInvalidationsOutput, error)

ListInvalidationsWithContext is the same as ListInvalidations with the addition of the ability to pass a context and additional request options.

See ListInvalidations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListStreamingDistributions

func (c *CloudFront) ListStreamingDistributions(input *ListStreamingDistributionsInput) (*ListStreamingDistributionsOutput, error)

ListStreamingDistributions API operation for Amazon CloudFront.

List streaming distributions.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation ListStreamingDistributions for usage and error information.

Returned Error Codes:

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListStreamingDistributions

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.ListStreamingDistributionsInput{}

result, err := svc.ListStreamingDistributions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) ListStreamingDistributionsPages

func (c *CloudFront) ListStreamingDistributionsPages(input *ListStreamingDistributionsInput, fn func(*ListStreamingDistributionsOutput, bool) bool) error

ListStreamingDistributionsPages iterates over the pages of a ListStreamingDistributions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListStreamingDistributions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListStreamingDistributions operation.
pageNum := 0
err := client.ListStreamingDistributionsPages(params,
    func(page *ListStreamingDistributionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudFront) ListStreamingDistributionsPagesWithContext

func (c *CloudFront) ListStreamingDistributionsPagesWithContext(ctx aws.Context, input *ListStreamingDistributionsInput, fn func(*ListStreamingDistributionsOutput, bool) bool, opts ...request.Option) error

ListStreamingDistributionsPagesWithContext same as ListStreamingDistributionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListStreamingDistributionsRequest

func (c *CloudFront) ListStreamingDistributionsRequest(input *ListStreamingDistributionsInput) (req *request.Request, output *ListStreamingDistributionsOutput)

ListStreamingDistributionsRequest generates a "aws/request.Request" representing the client's request for the ListStreamingDistributions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListStreamingDistributions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListStreamingDistributions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListStreamingDistributionsRequest method.
req, resp := client.ListStreamingDistributionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListStreamingDistributions

func (*CloudFront) ListStreamingDistributionsWithContext

func (c *CloudFront) ListStreamingDistributionsWithContext(ctx aws.Context, input *ListStreamingDistributionsInput, opts ...request.Option) (*ListStreamingDistributionsOutput, error)

ListStreamingDistributionsWithContext is the same as ListStreamingDistributions with the addition of the ability to pass a context and additional request options.

See ListStreamingDistributions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) ListTagsForResource

func (c *CloudFront) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource API operation for Amazon CloudFront.

List tags for a CloudFront resource.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation ListTagsForResource for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidTagging "InvalidTagging"

* ErrCodeNoSuchResource "NoSuchResource"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListTagsForResource

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.ListTagsForResourceInput{}

result, err := svc.ListTagsForResource(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidTagging:
            fmt.Println(cloudfront.ErrCodeInvalidTagging, aerr.Error())
        case cloudfront.ErrCodeNoSuchResource:
            fmt.Println(cloudfront.ErrCodeNoSuchResource, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) ListTagsForResourceRequest

func (c *CloudFront) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)

ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListTagsForResource for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListTagsForResource method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListTagsForResourceRequest method.
req, resp := client.ListTagsForResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListTagsForResource

func (*CloudFront) ListTagsForResourceWithContext

func (c *CloudFront) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.

See ListTagsForResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) TagResource

func (c *CloudFront) TagResource(input *TagResourceInput) (*TagResourceOutput, error)

TagResource API operation for Amazon CloudFront.

Add tags to a CloudFront resource.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation TagResource for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidTagging "InvalidTagging"

* ErrCodeNoSuchResource "NoSuchResource"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/TagResource

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.TagResourceInput{}

result, err := svc.TagResource(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidTagging:
            fmt.Println(cloudfront.ErrCodeInvalidTagging, aerr.Error())
        case cloudfront.ErrCodeNoSuchResource:
            fmt.Println(cloudfront.ErrCodeNoSuchResource, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) TagResourceRequest

func (c *CloudFront) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)

TagResourceRequest generates a "aws/request.Request" representing the client's request for the TagResource operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See TagResource for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the TagResource method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the TagResourceRequest method.
req, resp := client.TagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/TagResource

func (*CloudFront) TagResourceWithContext

func (c *CloudFront) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)

TagResourceWithContext is the same as TagResource with the addition of the ability to pass a context and additional request options.

See TagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) UntagResource

func (c *CloudFront) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)

UntagResource API operation for Amazon CloudFront.

Remove tags from a CloudFront resource.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation UntagResource for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidTagging "InvalidTagging"

* ErrCodeNoSuchResource "NoSuchResource"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UntagResource

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.UntagResourceInput{}

result, err := svc.UntagResource(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidTagging:
            fmt.Println(cloudfront.ErrCodeInvalidTagging, aerr.Error())
        case cloudfront.ErrCodeNoSuchResource:
            fmt.Println(cloudfront.ErrCodeNoSuchResource, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) UntagResourceRequest

func (c *CloudFront) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)

UntagResourceRequest generates a "aws/request.Request" representing the client's request for the UntagResource operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UntagResource for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UntagResource method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UntagResourceRequest method.
req, resp := client.UntagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UntagResource

func (*CloudFront) UntagResourceWithContext

func (c *CloudFront) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)

UntagResourceWithContext is the same as UntagResource with the addition of the ability to pass a context and additional request options.

See UntagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) UpdateCloudFrontOriginAccessIdentity

func (c *CloudFront) UpdateCloudFrontOriginAccessIdentity(input *UpdateCloudFrontOriginAccessIdentityInput) (*UpdateCloudFrontOriginAccessIdentityOutput, error)

UpdateCloudFrontOriginAccessIdentity API operation for Amazon CloudFront.

Update an origin access identity.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation UpdateCloudFrontOriginAccessIdentity for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeIllegalUpdate "IllegalUpdate"
Origin and CallerReference cannot be updated.

* ErrCodeInvalidIfMatchVersion "InvalidIfMatchVersion"
The If-Match version is missing or not valid for the distribution.

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeNoSuchCloudFrontOriginAccessIdentity "NoSuchCloudFrontOriginAccessIdentity"
The specified origin access identity does not exist.

* ErrCodePreconditionFailed "PreconditionFailed"
The precondition given in one or more of the request-header fields evaluated
to false.

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateCloudFrontOriginAccessIdentity

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.UpdateCloudFrontOriginAccessIdentityInput{}

result, err := svc.UpdateCloudFrontOriginAccessIdentity(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeIllegalUpdate:
            fmt.Println(cloudfront.ErrCodeIllegalUpdate, aerr.Error())
        case cloudfront.ErrCodeInvalidIfMatchVersion:
            fmt.Println(cloudfront.ErrCodeInvalidIfMatchVersion, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeNoSuchCloudFrontOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodePreconditionFailed:
            fmt.Println(cloudfront.ErrCodePreconditionFailed, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) UpdateCloudFrontOriginAccessIdentityRequest

func (c *CloudFront) UpdateCloudFrontOriginAccessIdentityRequest(input *UpdateCloudFrontOriginAccessIdentityInput) (req *request.Request, output *UpdateCloudFrontOriginAccessIdentityOutput)

UpdateCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the client's request for the UpdateCloudFrontOriginAccessIdentity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateCloudFrontOriginAccessIdentity for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateCloudFrontOriginAccessIdentity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateCloudFrontOriginAccessIdentityRequest method.
req, resp := client.UpdateCloudFrontOriginAccessIdentityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateCloudFrontOriginAccessIdentity

func (*CloudFront) UpdateCloudFrontOriginAccessIdentityWithContext

func (c *CloudFront) UpdateCloudFrontOriginAccessIdentityWithContext(ctx aws.Context, input *UpdateCloudFrontOriginAccessIdentityInput, opts ...request.Option) (*UpdateCloudFrontOriginAccessIdentityOutput, error)

UpdateCloudFrontOriginAccessIdentityWithContext is the same as UpdateCloudFrontOriginAccessIdentity with the addition of the ability to pass a context and additional request options.

See UpdateCloudFrontOriginAccessIdentity for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) UpdateDistribution

func (c *CloudFront) UpdateDistribution(input *UpdateDistributionInput) (*UpdateDistributionOutput, error)

UpdateDistribution API operation for Amazon CloudFront.

Updates the configuration for a web distribution. Perform the following steps.

For information about updating a distribution using the CloudFront console, see Creating or Updating a Web Distribution Using the CloudFront Console

(http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-creating-console.html)

in the Amazon CloudFront Developer Guide.

To update a web distribution using the CloudFront API

Submit a GetDistributionConfig request to get the current configuration and an Etag header for the distribution.

If you update the distribution again, you need to get a new Etag header.

Update the XML document that was returned in the response to your GetDistributionConfig request to include the desired changes. You can't change the value of CallerReference. If you try to change this value, CloudFront returns an IllegalUpdate error.

The new configuration replaces the existing configuration; the values that you specify in an UpdateDistribution request are not merged into the existing configuration. When you add, delete, or replace values in an element that allows multiple values (for example, CNAME), you must specify all of the values that you want to appear in the updated distribution. In addition, you must update the corresponding Quantity element.

Submit an UpdateDistribution request to update the configuration for your distribution:

In the request body, include the XML document that you updated in Step 2. The request body must include an XML document with a DistributionConfig element.

Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GetDistributionConfig request in Step 1.

Review the response to the UpdateDistribution request to confirm that the configuration was successfully updated.

Optional: Submit a GetDistribution request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed.

Beginning with the 2012-05-05 version of the CloudFront API, we made substantial changes to the format of the XML document that you include in the request body when you create or update a distribution. With previous versions of the API, we discovered that it was too easy to accidentally delete one or more values for an element that accepts multiple values, for example, CNAMEs and trusted signers. Our changes for the 2012-05-05 release are intended to prevent these accidental deletions and to notify you when there's a mismatch between the number of values you say you're specifying in the Quantity element and the number of values you're actually specifying.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation UpdateDistribution for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeCNAMEAlreadyExists "CNAMEAlreadyExists"

* ErrCodeIllegalUpdate "IllegalUpdate"
Origin and CallerReference cannot be updated.

* ErrCodeInvalidIfMatchVersion "InvalidIfMatchVersion"
The If-Match version is missing or not valid for the distribution.

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeNoSuchDistribution "NoSuchDistribution"
The specified distribution does not exist.

* ErrCodePreconditionFailed "PreconditionFailed"
The precondition given in one or more of the request-header fields evaluated
to false.

* ErrCodeTooManyDistributionCNAMEs "TooManyDistributionCNAMEs"
Your request contains more CNAMEs than are allowed per distribution.

* ErrCodeInvalidDefaultRootObject "InvalidDefaultRootObject"
The default root object file name is too big or contains an invalid character.

* ErrCodeInvalidRelativePath "InvalidRelativePath"
The relative path is too big, is not URL-encoded, or does not begin with
a slash (/).

* ErrCodeInvalidErrorCode "InvalidErrorCode"

* ErrCodeInvalidResponseCode "InvalidResponseCode"

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidOriginAccessIdentity "InvalidOriginAccessIdentity"
The origin access identity is not valid or doesn't exist.

* ErrCodeTooManyTrustedSigners "TooManyTrustedSigners"
Your request contains more trusted signers than are allowed per distribution.

* ErrCodeTrustedSignerDoesNotExist "TrustedSignerDoesNotExist"
One or more of your trusted signers do not exist.

* ErrCodeInvalidViewerCertificate "InvalidViewerCertificate"

* ErrCodeInvalidMinimumProtocolVersion "InvalidMinimumProtocolVersion"

* ErrCodeInvalidRequiredProtocol "InvalidRequiredProtocol"
This operation requires the HTTPS protocol. Ensure that you specify the HTTPS
protocol in your request, or omit the RequiredProtocols element from your
distribution configuration.

* ErrCodeNoSuchOrigin "NoSuchOrigin"
No origin exists with the specified Origin Id.

* ErrCodeTooManyOrigins "TooManyOrigins"
You cannot create more origins for the distribution.

* ErrCodeTooManyCacheBehaviors "TooManyCacheBehaviors"
You cannot create more cache behaviors for the distribution.

* ErrCodeTooManyCookieNamesInWhiteList "TooManyCookieNamesInWhiteList"
Your request contains more cookie names in the whitelist than are allowed
per cache behavior.

* ErrCodeInvalidForwardCookies "InvalidForwardCookies"
Your request contains forward cookies option which doesn't match with the
expectation for the whitelisted list of cookie names. Either list of cookie
names has been specified when not allowed or list of cookie names is missing
when expected.

* ErrCodeTooManyHeadersInForwardedValues "TooManyHeadersInForwardedValues"

* ErrCodeInvalidHeadersForS3Origin "InvalidHeadersForS3Origin"

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

* ErrCodeTooManyCertificates "TooManyCertificates"
You cannot create anymore custom SSL/TLS certificates.

* ErrCodeInvalidLocationCode "InvalidLocationCode"

* ErrCodeInvalidGeoRestrictionParameter "InvalidGeoRestrictionParameter"

* ErrCodeInvalidTTLOrder "InvalidTTLOrder"

* ErrCodeInvalidWebACLId "InvalidWebACLId"

* ErrCodeTooManyOriginCustomHeaders "TooManyOriginCustomHeaders"

* ErrCodeTooManyQueryStringParameters "TooManyQueryStringParameters"

* ErrCodeInvalidQueryStringParameters "InvalidQueryStringParameters"

* ErrCodeTooManyDistributionsWithLambdaAssociations "TooManyDistributionsWithLambdaAssociations"
Processing your request would cause the maximum number of distributions with
Lambda function associations per owner to be exceeded.

* ErrCodeTooManyLambdaFunctionAssociations "TooManyLambdaFunctionAssociations"
Your request contains more Lambda function associations than are allowed
per distribution.

* ErrCodeInvalidLambdaFunctionAssociation "InvalidLambdaFunctionAssociation"
The specified Lambda function association is invalid.

* ErrCodeInvalidOriginReadTimeout "InvalidOriginReadTimeout"

* ErrCodeInvalidOriginKeepaliveTimeout "InvalidOriginKeepaliveTimeout"

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.UpdateDistributionInput{}

result, err := svc.UpdateDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeCNAMEAlreadyExists:
            fmt.Println(cloudfront.ErrCodeCNAMEAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeIllegalUpdate:
            fmt.Println(cloudfront.ErrCodeIllegalUpdate, aerr.Error())
        case cloudfront.ErrCodeInvalidIfMatchVersion:
            fmt.Println(cloudfront.ErrCodeInvalidIfMatchVersion, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeNoSuchDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchDistribution, aerr.Error())
        case cloudfront.ErrCodePreconditionFailed:
            fmt.Println(cloudfront.ErrCodePreconditionFailed, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributionCNAMEs:
            fmt.Println(cloudfront.ErrCodeTooManyDistributionCNAMEs, aerr.Error())
        case cloudfront.ErrCodeInvalidDefaultRootObject:
            fmt.Println(cloudfront.ErrCodeInvalidDefaultRootObject, aerr.Error())
        case cloudfront.ErrCodeInvalidRelativePath:
            fmt.Println(cloudfront.ErrCodeInvalidRelativePath, aerr.Error())
        case cloudfront.ErrCodeInvalidErrorCode:
            fmt.Println(cloudfront.ErrCodeInvalidErrorCode, aerr.Error())
        case cloudfront.ErrCodeInvalidResponseCode:
            fmt.Println(cloudfront.ErrCodeInvalidResponseCode, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeInvalidOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodeTooManyTrustedSigners:
            fmt.Println(cloudfront.ErrCodeTooManyTrustedSigners, aerr.Error())
        case cloudfront.ErrCodeTrustedSignerDoesNotExist:
            fmt.Println(cloudfront.ErrCodeTrustedSignerDoesNotExist, aerr.Error())
        case cloudfront.ErrCodeInvalidViewerCertificate:
            fmt.Println(cloudfront.ErrCodeInvalidViewerCertificate, aerr.Error())
        case cloudfront.ErrCodeInvalidMinimumProtocolVersion:
            fmt.Println(cloudfront.ErrCodeInvalidMinimumProtocolVersion, aerr.Error())
        case cloudfront.ErrCodeInvalidRequiredProtocol:
            fmt.Println(cloudfront.ErrCodeInvalidRequiredProtocol, aerr.Error())
        case cloudfront.ErrCodeNoSuchOrigin:
            fmt.Println(cloudfront.ErrCodeNoSuchOrigin, aerr.Error())
        case cloudfront.ErrCodeTooManyOrigins:
            fmt.Println(cloudfront.ErrCodeTooManyOrigins, aerr.Error())
        case cloudfront.ErrCodeTooManyCacheBehaviors:
            fmt.Println(cloudfront.ErrCodeTooManyCacheBehaviors, aerr.Error())
        case cloudfront.ErrCodeTooManyCookieNamesInWhiteList:
            fmt.Println(cloudfront.ErrCodeTooManyCookieNamesInWhiteList, aerr.Error())
        case cloudfront.ErrCodeInvalidForwardCookies:
            fmt.Println(cloudfront.ErrCodeInvalidForwardCookies, aerr.Error())
        case cloudfront.ErrCodeTooManyHeadersInForwardedValues:
            fmt.Println(cloudfront.ErrCodeTooManyHeadersInForwardedValues, aerr.Error())
        case cloudfront.ErrCodeInvalidHeadersForS3Origin:
            fmt.Println(cloudfront.ErrCodeInvalidHeadersForS3Origin, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        case cloudfront.ErrCodeTooManyCertificates:
            fmt.Println(cloudfront.ErrCodeTooManyCertificates, aerr.Error())
        case cloudfront.ErrCodeInvalidLocationCode:
            fmt.Println(cloudfront.ErrCodeInvalidLocationCode, aerr.Error())
        case cloudfront.ErrCodeInvalidGeoRestrictionParameter:
            fmt.Println(cloudfront.ErrCodeInvalidGeoRestrictionParameter, aerr.Error())
        case cloudfront.ErrCodeInvalidTTLOrder:
            fmt.Println(cloudfront.ErrCodeInvalidTTLOrder, aerr.Error())
        case cloudfront.ErrCodeInvalidWebACLId:
            fmt.Println(cloudfront.ErrCodeInvalidWebACLId, aerr.Error())
        case cloudfront.ErrCodeTooManyOriginCustomHeaders:
            fmt.Println(cloudfront.ErrCodeTooManyOriginCustomHeaders, aerr.Error())
        case cloudfront.ErrCodeTooManyQueryStringParameters:
            fmt.Println(cloudfront.ErrCodeTooManyQueryStringParameters, aerr.Error())
        case cloudfront.ErrCodeInvalidQueryStringParameters:
            fmt.Println(cloudfront.ErrCodeInvalidQueryStringParameters, aerr.Error())
        case cloudfront.ErrCodeTooManyDistributionsWithLambdaAssociations:
            fmt.Println(cloudfront.ErrCodeTooManyDistributionsWithLambdaAssociations, aerr.Error())
        case cloudfront.ErrCodeTooManyLambdaFunctionAssociations:
            fmt.Println(cloudfront.ErrCodeTooManyLambdaFunctionAssociations, aerr.Error())
        case cloudfront.ErrCodeInvalidLambdaFunctionAssociation:
            fmt.Println(cloudfront.ErrCodeInvalidLambdaFunctionAssociation, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginReadTimeout:
            fmt.Println(cloudfront.ErrCodeInvalidOriginReadTimeout, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginKeepaliveTimeout:
            fmt.Println(cloudfront.ErrCodeInvalidOriginKeepaliveTimeout, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) UpdateDistributionRequest

func (c *CloudFront) UpdateDistributionRequest(input *UpdateDistributionInput) (req *request.Request, output *UpdateDistributionOutput)

UpdateDistributionRequest generates a "aws/request.Request" representing the client's request for the UpdateDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateDistributionRequest method.
req, resp := client.UpdateDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateDistribution

func (*CloudFront) UpdateDistributionWithContext

func (c *CloudFront) UpdateDistributionWithContext(ctx aws.Context, input *UpdateDistributionInput, opts ...request.Option) (*UpdateDistributionOutput, error)

UpdateDistributionWithContext is the same as UpdateDistribution with the addition of the ability to pass a context and additional request options.

See UpdateDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) UpdateStreamingDistribution

func (c *CloudFront) UpdateStreamingDistribution(input *UpdateStreamingDistributionInput) (*UpdateStreamingDistributionOutput, error)

UpdateStreamingDistribution API operation for Amazon CloudFront.

Update a streaming distribution.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon CloudFront's API operation UpdateStreamingDistribution for usage and error information.

Returned Error Codes:

* ErrCodeAccessDenied "AccessDenied"
Access denied.

* ErrCodeCNAMEAlreadyExists "CNAMEAlreadyExists"

* ErrCodeIllegalUpdate "IllegalUpdate"
Origin and CallerReference cannot be updated.

* ErrCodeInvalidIfMatchVersion "InvalidIfMatchVersion"
The If-Match version is missing or not valid for the distribution.

* ErrCodeMissingBody "MissingBody"
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.

* ErrCodeNoSuchStreamingDistribution "NoSuchStreamingDistribution"
The specified streaming distribution does not exist.

* ErrCodePreconditionFailed "PreconditionFailed"
The precondition given in one or more of the request-header fields evaluated
to false.

* ErrCodeTooManyStreamingDistributionCNAMEs "TooManyStreamingDistributionCNAMEs"

* ErrCodeInvalidArgument "InvalidArgument"
The argument is invalid.

* ErrCodeInvalidOriginAccessIdentity "InvalidOriginAccessIdentity"
The origin access identity is not valid or doesn't exist.

* ErrCodeTooManyTrustedSigners "TooManyTrustedSigners"
Your request contains more trusted signers than are allowed per distribution.

* ErrCodeTrustedSignerDoesNotExist "TrustedSignerDoesNotExist"
One or more of your trusted signers do not exist.

* ErrCodeInconsistentQuantities "InconsistentQuantities"
The value of Quantity and the size of Items do not match.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateStreamingDistribution

Example (Shared00)

Code:

svc := cloudfront.New(session.New())
input := &cloudfront.UpdateStreamingDistributionInput{}

result, err := svc.UpdateStreamingDistribution(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case cloudfront.ErrCodeAccessDenied:
            fmt.Println(cloudfront.ErrCodeAccessDenied, aerr.Error())
        case cloudfront.ErrCodeCNAMEAlreadyExists:
            fmt.Println(cloudfront.ErrCodeCNAMEAlreadyExists, aerr.Error())
        case cloudfront.ErrCodeIllegalUpdate:
            fmt.Println(cloudfront.ErrCodeIllegalUpdate, aerr.Error())
        case cloudfront.ErrCodeInvalidIfMatchVersion:
            fmt.Println(cloudfront.ErrCodeInvalidIfMatchVersion, aerr.Error())
        case cloudfront.ErrCodeMissingBody:
            fmt.Println(cloudfront.ErrCodeMissingBody, aerr.Error())
        case cloudfront.ErrCodeNoSuchStreamingDistribution:
            fmt.Println(cloudfront.ErrCodeNoSuchStreamingDistribution, aerr.Error())
        case cloudfront.ErrCodePreconditionFailed:
            fmt.Println(cloudfront.ErrCodePreconditionFailed, aerr.Error())
        case cloudfront.ErrCodeTooManyStreamingDistributionCNAMEs:
            fmt.Println(cloudfront.ErrCodeTooManyStreamingDistributionCNAMEs, aerr.Error())
        case cloudfront.ErrCodeInvalidArgument:
            fmt.Println(cloudfront.ErrCodeInvalidArgument, aerr.Error())
        case cloudfront.ErrCodeInvalidOriginAccessIdentity:
            fmt.Println(cloudfront.ErrCodeInvalidOriginAccessIdentity, aerr.Error())
        case cloudfront.ErrCodeTooManyTrustedSigners:
            fmt.Println(cloudfront.ErrCodeTooManyTrustedSigners, aerr.Error())
        case cloudfront.ErrCodeTrustedSignerDoesNotExist:
            fmt.Println(cloudfront.ErrCodeTrustedSignerDoesNotExist, aerr.Error())
        case cloudfront.ErrCodeInconsistentQuantities:
            fmt.Println(cloudfront.ErrCodeInconsistentQuantities, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*CloudFront) UpdateStreamingDistributionRequest

func (c *CloudFront) UpdateStreamingDistributionRequest(input *UpdateStreamingDistributionInput) (req *request.Request, output *UpdateStreamingDistributionOutput)

UpdateStreamingDistributionRequest generates a "aws/request.Request" representing the client's request for the UpdateStreamingDistribution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateStreamingDistribution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateStreamingDistribution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateStreamingDistributionRequest method.
req, resp := client.UpdateStreamingDistributionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateStreamingDistribution

func (*CloudFront) UpdateStreamingDistributionWithContext

func (c *CloudFront) UpdateStreamingDistributionWithContext(ctx aws.Context, input *UpdateStreamingDistributionInput, opts ...request.Option) (*UpdateStreamingDistributionOutput, error)

UpdateStreamingDistributionWithContext is the same as UpdateStreamingDistribution with the addition of the ability to pass a context and additional request options.

See UpdateStreamingDistribution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) WaitUntilDistributionDeployed

func (c *CloudFront) WaitUntilDistributionDeployed(input *GetDistributionInput) error

WaitUntilDistributionDeployed uses the CloudFront API operation GetDistribution to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*CloudFront) WaitUntilDistributionDeployedWithContext

func (c *CloudFront) WaitUntilDistributionDeployedWithContext(ctx aws.Context, input *GetDistributionInput, opts ...request.WaiterOption) error

WaitUntilDistributionDeployedWithContext is an extended version of WaitUntilDistributionDeployed. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) WaitUntilInvalidationCompleted

func (c *CloudFront) WaitUntilInvalidationCompleted(input *GetInvalidationInput) error

WaitUntilInvalidationCompleted uses the CloudFront API operation GetInvalidation to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*CloudFront) WaitUntilInvalidationCompletedWithContext

func (c *CloudFront) WaitUntilInvalidationCompletedWithContext(ctx aws.Context, input *GetInvalidationInput, opts ...request.WaiterOption) error

WaitUntilInvalidationCompletedWithContext is an extended version of WaitUntilInvalidationCompleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudFront) WaitUntilStreamingDistributionDeployed

func (c *CloudFront) WaitUntilStreamingDistributionDeployed(input *GetStreamingDistributionInput) error

WaitUntilStreamingDistributionDeployed uses the CloudFront API operation GetStreamingDistribution to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*CloudFront) WaitUntilStreamingDistributionDeployedWithContext

func (c *CloudFront) WaitUntilStreamingDistributionDeployedWithContext(ctx aws.Context, input *GetStreamingDistributionInput, opts ...request.WaiterOption) error

WaitUntilStreamingDistributionDeployedWithContext is an extended version of WaitUntilStreamingDistributionDeployed. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type CookieNames

A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CookieNames

type CookieNames struct {

    // A complex type that contains one Name element for each cookie that you want
    // CloudFront to forward to the origin for this cache behavior.
    Items []*string `locationNameList:"Name" type:"list"`

    // The number of different cookies that you want CloudFront to forward to the
    // origin for this cache behavior.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (CookieNames) GoString

func (s CookieNames) GoString() string

GoString returns the string representation

func (*CookieNames) SetItems

func (s *CookieNames) SetItems(v []*string) *CookieNames

SetItems sets the Items field's value.

func (*CookieNames) SetQuantity

func (s *CookieNames) SetQuantity(v int64) *CookieNames

SetQuantity sets the Quantity field's value.

func (CookieNames) String

func (s CookieNames) String() string

String returns the string representation

func (*CookieNames) Validate

func (s *CookieNames) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CookiePreference

A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CookiePreference

type CookiePreference struct {

    // Specifies which cookies to forward to the origin for this cache behavior:
    // all, none, or the list of cookies specified in the WhitelistedNames complex
    // type.
    //
    // Amazon S3 doesn't process cookies. When the cache behavior is forwarding
    // requests to an Amazon S3 origin, specify none for the Forward element.
    //
    // Forward is a required field
    Forward *string `type:"string" required:"true" enum:"ItemSelection"`

    // Required if you specify whitelist for the value of Forward:. A complex type
    // that specifies how many different cookies you want CloudFront to forward
    // to the origin for this cache behavior and, if you want to forward selected
    // cookies, the names of those cookies.
    //
    // If you specify all or none for the value of Forward, omit WhitelistedNames.
    // If you change the value of Forward from whitelist to all or none and you
    // don't delete the WhitelistedNames element and its child elements, CloudFront
    // deletes them automatically.
    //
    // For the current limit on the number of cookie names that you can whitelist
    // for each cache behavior, see Amazon CloudFront Limits (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_cloudfront)
    // in the AWS General Reference.
    WhitelistedNames *CookieNames `type:"structure"`
    // contains filtered or unexported fields
}

func (CookiePreference) GoString

func (s CookiePreference) GoString() string

GoString returns the string representation

func (*CookiePreference) SetForward

func (s *CookiePreference) SetForward(v string) *CookiePreference

SetForward sets the Forward field's value.

func (*CookiePreference) SetWhitelistedNames

func (s *CookiePreference) SetWhitelistedNames(v *CookieNames) *CookiePreference

SetWhitelistedNames sets the WhitelistedNames field's value.

func (CookiePreference) String

func (s CookiePreference) String() string

String returns the string representation

func (*CookiePreference) Validate

func (s *CookiePreference) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateCloudFrontOriginAccessIdentityInput

The request to create a new origin access identity. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateCloudFrontOriginAccessIdentityRequest

type CreateCloudFrontOriginAccessIdentityInput struct {

    // The current configuration information for the identity.
    //
    // CloudFrontOriginAccessIdentityConfig is a required field
    CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `locationName:"CloudFrontOriginAccessIdentityConfig" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (CreateCloudFrontOriginAccessIdentityInput) GoString

func (s CreateCloudFrontOriginAccessIdentityInput) GoString() string

GoString returns the string representation

func (*CreateCloudFrontOriginAccessIdentityInput) SetCloudFrontOriginAccessIdentityConfig

func (s *CreateCloudFrontOriginAccessIdentityInput) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *CreateCloudFrontOriginAccessIdentityInput

SetCloudFrontOriginAccessIdentityConfig sets the CloudFrontOriginAccessIdentityConfig field's value.

func (CreateCloudFrontOriginAccessIdentityInput) String

func (s CreateCloudFrontOriginAccessIdentityInput) String() string

String returns the string representation

func (*CreateCloudFrontOriginAccessIdentityInput) Validate

func (s *CreateCloudFrontOriginAccessIdentityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateCloudFrontOriginAccessIdentityOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateCloudFrontOriginAccessIdentityResult

type CreateCloudFrontOriginAccessIdentityOutput struct {

    // The origin access identity's information.
    CloudFrontOriginAccessIdentity *OriginAccessIdentity `type:"structure"`

    // The current version of the origin access identity created.
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The fully qualified URI of the new origin access identity just created. For
    // example: https://cloudfront.amazonaws.com/2010-11-01/origin-access-identity/cloudfront/E74FTE3AJFJ256A.
    Location *string `location:"header" locationName:"Location" type:"string"`
    // contains filtered or unexported fields
}

func (CreateCloudFrontOriginAccessIdentityOutput) GoString

func (s CreateCloudFrontOriginAccessIdentityOutput) GoString() string

GoString returns the string representation

func (*CreateCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity

func (s *CreateCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity(v *OriginAccessIdentity) *CreateCloudFrontOriginAccessIdentityOutput

SetCloudFrontOriginAccessIdentity sets the CloudFrontOriginAccessIdentity field's value.

func (*CreateCloudFrontOriginAccessIdentityOutput) SetETag

func (s *CreateCloudFrontOriginAccessIdentityOutput) SetETag(v string) *CreateCloudFrontOriginAccessIdentityOutput

SetETag sets the ETag field's value.

func (*CreateCloudFrontOriginAccessIdentityOutput) SetLocation

func (s *CreateCloudFrontOriginAccessIdentityOutput) SetLocation(v string) *CreateCloudFrontOriginAccessIdentityOutput

SetLocation sets the Location field's value.

func (CreateCloudFrontOriginAccessIdentityOutput) String

func (s CreateCloudFrontOriginAccessIdentityOutput) String() string

String returns the string representation

type CreateDistributionInput

The request to create a new distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistributionRequest

type CreateDistributionInput struct {

    // The distribution's configuration information.
    //
    // DistributionConfig is a required field
    DistributionConfig *DistributionConfig `locationName:"DistributionConfig" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (CreateDistributionInput) GoString

func (s CreateDistributionInput) GoString() string

GoString returns the string representation

func (*CreateDistributionInput) SetDistributionConfig

func (s *CreateDistributionInput) SetDistributionConfig(v *DistributionConfig) *CreateDistributionInput

SetDistributionConfig sets the DistributionConfig field's value.

func (CreateDistributionInput) String

func (s CreateDistributionInput) String() string

String returns the string representation

func (*CreateDistributionInput) Validate

func (s *CreateDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDistributionOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistributionResult

type CreateDistributionOutput struct {

    // The distribution's information.
    Distribution *Distribution `type:"structure"`

    // The current version of the distribution created.
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The fully qualified URI of the new distribution resource just created. For
    // example: https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5.
    Location *string `location:"header" locationName:"Location" type:"string"`
    // contains filtered or unexported fields
}

func (CreateDistributionOutput) GoString

func (s CreateDistributionOutput) GoString() string

GoString returns the string representation

func (*CreateDistributionOutput) SetDistribution

func (s *CreateDistributionOutput) SetDistribution(v *Distribution) *CreateDistributionOutput

SetDistribution sets the Distribution field's value.

func (*CreateDistributionOutput) SetETag

func (s *CreateDistributionOutput) SetETag(v string) *CreateDistributionOutput

SetETag sets the ETag field's value.

func (*CreateDistributionOutput) SetLocation

func (s *CreateDistributionOutput) SetLocation(v string) *CreateDistributionOutput

SetLocation sets the Location field's value.

func (CreateDistributionOutput) String

func (s CreateDistributionOutput) String() string

String returns the string representation

type CreateDistributionWithTagsInput

The request to create a new distribution with tags. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistributionWithTagsRequest

type CreateDistributionWithTagsInput struct {

    // The distribution's configuration information.
    //
    // DistributionConfigWithTags is a required field
    DistributionConfigWithTags *DistributionConfigWithTags `locationName:"DistributionConfigWithTags" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (CreateDistributionWithTagsInput) GoString

func (s CreateDistributionWithTagsInput) GoString() string

GoString returns the string representation

func (*CreateDistributionWithTagsInput) SetDistributionConfigWithTags

func (s *CreateDistributionWithTagsInput) SetDistributionConfigWithTags(v *DistributionConfigWithTags) *CreateDistributionWithTagsInput

SetDistributionConfigWithTags sets the DistributionConfigWithTags field's value.

func (CreateDistributionWithTagsInput) String

func (s CreateDistributionWithTagsInput) String() string

String returns the string representation

func (*CreateDistributionWithTagsInput) Validate

func (s *CreateDistributionWithTagsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDistributionWithTagsOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateDistributionWithTagsResult

type CreateDistributionWithTagsOutput struct {

    // The distribution's information.
    Distribution *Distribution `type:"structure"`

    // The current version of the distribution created.
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The fully qualified URI of the new distribution resource just created. For
    // example: https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5.
    Location *string `location:"header" locationName:"Location" type:"string"`
    // contains filtered or unexported fields
}

func (CreateDistributionWithTagsOutput) GoString

func (s CreateDistributionWithTagsOutput) GoString() string

GoString returns the string representation

func (*CreateDistributionWithTagsOutput) SetDistribution

func (s *CreateDistributionWithTagsOutput) SetDistribution(v *Distribution) *CreateDistributionWithTagsOutput

SetDistribution sets the Distribution field's value.

func (*CreateDistributionWithTagsOutput) SetETag

func (s *CreateDistributionWithTagsOutput) SetETag(v string) *CreateDistributionWithTagsOutput

SetETag sets the ETag field's value.

func (*CreateDistributionWithTagsOutput) SetLocation

func (s *CreateDistributionWithTagsOutput) SetLocation(v string) *CreateDistributionWithTagsOutput

SetLocation sets the Location field's value.

func (CreateDistributionWithTagsOutput) String

func (s CreateDistributionWithTagsOutput) String() string

String returns the string representation

type CreateInvalidationInput

The request to create an invalidation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateInvalidationRequest

type CreateInvalidationInput struct {

    // The distribution's id.
    //
    // DistributionId is a required field
    DistributionId *string `location:"uri" locationName:"DistributionId" type:"string" required:"true"`

    // The batch information for the invalidation.
    //
    // InvalidationBatch is a required field
    InvalidationBatch *InvalidationBatch `locationName:"InvalidationBatch" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (CreateInvalidationInput) GoString

func (s CreateInvalidationInput) GoString() string

GoString returns the string representation

func (*CreateInvalidationInput) SetDistributionId

func (s *CreateInvalidationInput) SetDistributionId(v string) *CreateInvalidationInput

SetDistributionId sets the DistributionId field's value.

func (*CreateInvalidationInput) SetInvalidationBatch

func (s *CreateInvalidationInput) SetInvalidationBatch(v *InvalidationBatch) *CreateInvalidationInput

SetInvalidationBatch sets the InvalidationBatch field's value.

func (CreateInvalidationInput) String

func (s CreateInvalidationInput) String() string

String returns the string representation

func (*CreateInvalidationInput) Validate

func (s *CreateInvalidationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateInvalidationOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateInvalidationResult

type CreateInvalidationOutput struct {

    // The invalidation's information.
    Invalidation *Invalidation `type:"structure"`

    // The fully qualified URI of the distribution and invalidation batch request,
    // including the Invalidation ID.
    Location *string `location:"header" locationName:"Location" type:"string"`
    // contains filtered or unexported fields
}

func (CreateInvalidationOutput) GoString

func (s CreateInvalidationOutput) GoString() string

GoString returns the string representation

func (*CreateInvalidationOutput) SetInvalidation

func (s *CreateInvalidationOutput) SetInvalidation(v *Invalidation) *CreateInvalidationOutput

SetInvalidation sets the Invalidation field's value.

func (*CreateInvalidationOutput) SetLocation

func (s *CreateInvalidationOutput) SetLocation(v string) *CreateInvalidationOutput

SetLocation sets the Location field's value.

func (CreateInvalidationOutput) String

func (s CreateInvalidationOutput) String() string

String returns the string representation

type CreateStreamingDistributionInput

The request to create a new streaming distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistributionRequest

type CreateStreamingDistributionInput struct {

    // The streaming distribution's configuration information.
    //
    // StreamingDistributionConfig is a required field
    StreamingDistributionConfig *StreamingDistributionConfig `locationName:"StreamingDistributionConfig" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (CreateStreamingDistributionInput) GoString

func (s CreateStreamingDistributionInput) GoString() string

GoString returns the string representation

func (*CreateStreamingDistributionInput) SetStreamingDistributionConfig

func (s *CreateStreamingDistributionInput) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *CreateStreamingDistributionInput

SetStreamingDistributionConfig sets the StreamingDistributionConfig field's value.

func (CreateStreamingDistributionInput) String

func (s CreateStreamingDistributionInput) String() string

String returns the string representation

func (*CreateStreamingDistributionInput) Validate

func (s *CreateStreamingDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateStreamingDistributionOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistributionResult

type CreateStreamingDistributionOutput struct {

    // The current version of the streaming distribution created.
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The fully qualified URI of the new streaming distribution resource just created.
    // For example: https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8.
    Location *string `location:"header" locationName:"Location" type:"string"`

    // The streaming distribution's information.
    StreamingDistribution *StreamingDistribution `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateStreamingDistributionOutput) GoString

func (s CreateStreamingDistributionOutput) GoString() string

GoString returns the string representation

func (*CreateStreamingDistributionOutput) SetETag

func (s *CreateStreamingDistributionOutput) SetETag(v string) *CreateStreamingDistributionOutput

SetETag sets the ETag field's value.

func (*CreateStreamingDistributionOutput) SetLocation

func (s *CreateStreamingDistributionOutput) SetLocation(v string) *CreateStreamingDistributionOutput

SetLocation sets the Location field's value.

func (*CreateStreamingDistributionOutput) SetStreamingDistribution

func (s *CreateStreamingDistributionOutput) SetStreamingDistribution(v *StreamingDistribution) *CreateStreamingDistributionOutput

SetStreamingDistribution sets the StreamingDistribution field's value.

func (CreateStreamingDistributionOutput) String

func (s CreateStreamingDistributionOutput) String() string

String returns the string representation

type CreateStreamingDistributionWithTagsInput

The request to create a new streaming distribution with tags. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistributionWithTagsRequest

type CreateStreamingDistributionWithTagsInput struct {

    // The streaming distribution's configuration information.
    //
    // StreamingDistributionConfigWithTags is a required field
    StreamingDistributionConfigWithTags *StreamingDistributionConfigWithTags `locationName:"StreamingDistributionConfigWithTags" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (CreateStreamingDistributionWithTagsInput) GoString

func (s CreateStreamingDistributionWithTagsInput) GoString() string

GoString returns the string representation

func (*CreateStreamingDistributionWithTagsInput) SetStreamingDistributionConfigWithTags

func (s *CreateStreamingDistributionWithTagsInput) SetStreamingDistributionConfigWithTags(v *StreamingDistributionConfigWithTags) *CreateStreamingDistributionWithTagsInput

SetStreamingDistributionConfigWithTags sets the StreamingDistributionConfigWithTags field's value.

func (CreateStreamingDistributionWithTagsInput) String

func (s CreateStreamingDistributionWithTagsInput) String() string

String returns the string representation

func (*CreateStreamingDistributionWithTagsInput) Validate

func (s *CreateStreamingDistributionWithTagsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateStreamingDistributionWithTagsOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CreateStreamingDistributionWithTagsResult

type CreateStreamingDistributionWithTagsOutput struct {
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The fully qualified URI of the new streaming distribution resource just created.
    // For example: https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8.
    Location *string `location:"header" locationName:"Location" type:"string"`

    // The streaming distribution's information.
    StreamingDistribution *StreamingDistribution `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateStreamingDistributionWithTagsOutput) GoString

func (s CreateStreamingDistributionWithTagsOutput) GoString() string

GoString returns the string representation

func (*CreateStreamingDistributionWithTagsOutput) SetETag

func (s *CreateStreamingDistributionWithTagsOutput) SetETag(v string) *CreateStreamingDistributionWithTagsOutput

SetETag sets the ETag field's value.

func (*CreateStreamingDistributionWithTagsOutput) SetLocation

func (s *CreateStreamingDistributionWithTagsOutput) SetLocation(v string) *CreateStreamingDistributionWithTagsOutput

SetLocation sets the Location field's value.

func (*CreateStreamingDistributionWithTagsOutput) SetStreamingDistribution

func (s *CreateStreamingDistributionWithTagsOutput) SetStreamingDistribution(v *StreamingDistribution) *CreateStreamingDistributionWithTagsOutput

SetStreamingDistribution sets the StreamingDistribution field's value.

func (CreateStreamingDistributionWithTagsOutput) String

func (s CreateStreamingDistributionWithTagsOutput) String() string

String returns the string representation

type CustomErrorResponse

A complex type that controls:

* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range
with custom error messages before returning the response to the viewer.

* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

For more information about custom error pages, see Customizing Error Responses (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CustomErrorResponse

type CustomErrorResponse struct {

    // The minimum amount of time, in seconds, that you want CloudFront to cache
    // the HTTP status code specified in ErrorCode. When this time period has elapsed,
    // CloudFront queries your origin to see whether the problem that caused the
    // error has been resolved and the requested object is now available.
    //
    // If you don't want to specify a value, include an empty element, <ErrorCachingMinTTL>,
    // in the XML document.
    //
    // For more information, see Customizing Error Responses (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
    // in the Amazon CloudFront Developer Guide.
    ErrorCachingMinTTL *int64 `type:"long"`

    // The HTTP status code for which you want to specify a custom error page and/or
    // a caching duration.
    //
    // ErrorCode is a required field
    ErrorCode *int64 `type:"integer" required:"true"`

    // The HTTP status code that you want CloudFront to return to the viewer along
    // with the custom error page. There are a variety of reasons that you might
    // want CloudFront to return a status code different from the status code that
    // your origin returned to CloudFront, for example:
    //
    //    * Some Internet devices (some firewalls and corporate proxies, for example)
    //    intercept HTTP 4xx and 5xx and prevent the response from being returned
    //    to the viewer. If you substitute 200, the response typically won't be
    //    intercepted.
    //
    //    * If you don't care about distinguishing among different client errors
    //    or server errors, you can specify 400 or 500 as the ResponseCode for all
    //    4xx or 5xx errors.
    //
    //    * You might want to return a 200 status code (OK) and static website so
    //    your customers don't know that your website is down.
    //
    // If you specify a value for ResponseCode, you must also specify a value for
    // ResponsePagePath. If you don't want to specify a value, include an empty
    // element, <ResponseCode>, in the XML document.
    ResponseCode *string `type:"string"`

    // The path to the custom error page that you want CloudFront to return to a
    // viewer when your origin returns the HTTP status code specified by ErrorCode,
    // for example, /4xx-errors/403-forbidden.html. If you want to store your objects
    // and your custom error pages in different locations, your distribution must
    // include a cache behavior for which the following is true:
    //
    //    * The value of PathPattern matches the path to your custom error messages.
    //    For example, suppose you saved custom error pages for 4xx errors in an
    //    Amazon S3 bucket in a directory named /4xx-errors. Your distribution must
    //    include a cache behavior for which the path pattern routes requests for
    //    your custom error pages to that location, for example, /4xx-errors/*.
    //
    //
    //    * The value of TargetOriginId specifies the value of the ID element for
    //    the origin that contains your custom error pages.
    //
    // If you specify a value for ResponsePagePath, you must also specify a value
    // for ResponseCode. If you don't want to specify a value, include an empty
    // element, <ResponsePagePath>, in the XML document.
    //
    // We recommend that you store custom error pages in an Amazon S3 bucket. If
    // you store custom error pages on an HTTP server and the server starts to return
    // 5xx errors, CloudFront can't get the files that you want to return to viewers
    // because the origin server is unavailable.
    ResponsePagePath *string `type:"string"`
    // contains filtered or unexported fields
}

func (CustomErrorResponse) GoString

func (s CustomErrorResponse) GoString() string

GoString returns the string representation

func (*CustomErrorResponse) SetErrorCachingMinTTL

func (s *CustomErrorResponse) SetErrorCachingMinTTL(v int64) *CustomErrorResponse

SetErrorCachingMinTTL sets the ErrorCachingMinTTL field's value.

func (*CustomErrorResponse) SetErrorCode

func (s *CustomErrorResponse) SetErrorCode(v int64) *CustomErrorResponse

SetErrorCode sets the ErrorCode field's value.

func (*CustomErrorResponse) SetResponseCode

func (s *CustomErrorResponse) SetResponseCode(v string) *CustomErrorResponse

SetResponseCode sets the ResponseCode field's value.

func (*CustomErrorResponse) SetResponsePagePath

func (s *CustomErrorResponse) SetResponsePagePath(v string) *CustomErrorResponse

SetResponsePagePath sets the ResponsePagePath field's value.

func (CustomErrorResponse) String

func (s CustomErrorResponse) String() string

String returns the string representation

func (*CustomErrorResponse) Validate

func (s *CustomErrorResponse) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CustomErrorResponses

A complex type that controls:

* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range
with custom error messages before returning the response to the viewer.

* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.

For more information about custom error pages, see Customizing Error Responses (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CustomErrorResponses

type CustomErrorResponses struct {

    // A complex type that contains a CustomErrorResponse element for each HTTP
    // status code for which you want to specify a custom error page and/or a caching
    // duration.
    Items []*CustomErrorResponse `locationNameList:"CustomErrorResponse" type:"list"`

    // The number of HTTP status codes for which you want to specify a custom error
    // page and/or a caching duration. If Quantity is 0, you can omit Items.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (CustomErrorResponses) GoString

func (s CustomErrorResponses) GoString() string

GoString returns the string representation

func (*CustomErrorResponses) SetItems

func (s *CustomErrorResponses) SetItems(v []*CustomErrorResponse) *CustomErrorResponses

SetItems sets the Items field's value.

func (*CustomErrorResponses) SetQuantity

func (s *CustomErrorResponses) SetQuantity(v int64) *CustomErrorResponses

SetQuantity sets the Quantity field's value.

func (CustomErrorResponses) String

func (s CustomErrorResponses) String() string

String returns the string representation

func (*CustomErrorResponses) Validate

func (s *CustomErrorResponses) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CustomHeaders

A complex type that contains the list of Custom Headers for each origin. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CustomHeaders

type CustomHeaders struct {

    // Optional: A list that contains one OriginCustomHeader element for each custom
    // header that you want CloudFront to forward to the origin. If Quantity is
    // 0, omit Items.
    Items []*OriginCustomHeader `locationNameList:"OriginCustomHeader" type:"list"`

    // The number of custom headers, if any, for this distribution.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (CustomHeaders) GoString

func (s CustomHeaders) GoString() string

GoString returns the string representation

func (*CustomHeaders) SetItems

func (s *CustomHeaders) SetItems(v []*OriginCustomHeader) *CustomHeaders

SetItems sets the Items field's value.

func (*CustomHeaders) SetQuantity

func (s *CustomHeaders) SetQuantity(v int64) *CustomHeaders

SetQuantity sets the Quantity field's value.

func (CustomHeaders) String

func (s CustomHeaders) String() string

String returns the string representation

func (*CustomHeaders) Validate

func (s *CustomHeaders) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CustomOriginConfig

A customer origin. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CustomOriginConfig

type CustomOriginConfig struct {

    // The HTTP port the custom origin listens on.
    //
    // HTTPPort is a required field
    HTTPPort *int64 `type:"integer" required:"true"`

    // The HTTPS port the custom origin listens on.
    //
    // HTTPSPort is a required field
    HTTPSPort *int64 `type:"integer" required:"true"`

    // You can create a custom keep-alive timeout. All timeout units are in seconds.
    // The default keep-alive timeout is 5 seconds, but you can configure custom
    // timeout lengths using the CloudFront API. The minimum timeout length is 1
    // second; the maximum is 60 seconds.
    //
    // If you need to increase the maximum time limit, contact the AWS Support Center
    // (https://console.aws.amazon.com/support/home#/).
    OriginKeepaliveTimeout *int64 `type:"integer"`

    // The origin protocol policy to apply to your origin.
    //
    // OriginProtocolPolicy is a required field
    OriginProtocolPolicy *string `type:"string" required:"true" enum:"OriginProtocolPolicy"`

    // You can create a custom origin read timeout. All timeout units are in seconds.
    // The default origin read timeout is 30 seconds, but you can configure custom
    // timeout lengths using the CloudFront API. The minimum timeout length is 4
    // seconds; the maximum is 60 seconds.
    //
    // If you need to increase the maximum time limit, contact the AWS Support Center
    // (https://console.aws.amazon.com/support/home#/).
    OriginReadTimeout *int64 `type:"integer"`

    // The SSL/TLS protocols that you want CloudFront to use when communicating
    // with your origin over HTTPS.
    OriginSslProtocols *OriginSslProtocols `type:"structure"`
    // contains filtered or unexported fields
}

func (CustomOriginConfig) GoString

func (s CustomOriginConfig) GoString() string

GoString returns the string representation

func (*CustomOriginConfig) SetHTTPPort

func (s *CustomOriginConfig) SetHTTPPort(v int64) *CustomOriginConfig

SetHTTPPort sets the HTTPPort field's value.

func (*CustomOriginConfig) SetHTTPSPort

func (s *CustomOriginConfig) SetHTTPSPort(v int64) *CustomOriginConfig

SetHTTPSPort sets the HTTPSPort field's value.

func (*CustomOriginConfig) SetOriginKeepaliveTimeout

func (s *CustomOriginConfig) SetOriginKeepaliveTimeout(v int64) *CustomOriginConfig

SetOriginKeepaliveTimeout sets the OriginKeepaliveTimeout field's value.

func (*CustomOriginConfig) SetOriginProtocolPolicy

func (s *CustomOriginConfig) SetOriginProtocolPolicy(v string) *CustomOriginConfig

SetOriginProtocolPolicy sets the OriginProtocolPolicy field's value.

func (*CustomOriginConfig) SetOriginReadTimeout

func (s *CustomOriginConfig) SetOriginReadTimeout(v int64) *CustomOriginConfig

SetOriginReadTimeout sets the OriginReadTimeout field's value.

func (*CustomOriginConfig) SetOriginSslProtocols

func (s *CustomOriginConfig) SetOriginSslProtocols(v *OriginSslProtocols) *CustomOriginConfig

SetOriginSslProtocols sets the OriginSslProtocols field's value.

func (CustomOriginConfig) String

func (s CustomOriginConfig) String() string

String returns the string representation

func (*CustomOriginConfig) Validate

func (s *CustomOriginConfig) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DefaultCacheBehavior

A complex type that describes the default cache behavior if you do not 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. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DefaultCacheBehavior

type DefaultCacheBehavior struct {

    // A complex type that controls which HTTP methods CloudFront processes and
    // forwards to your Amazon S3 bucket or your custom origin. There are three
    // choices:
    //
    //    * CloudFront forwards only GET and HEAD requests.
    //
    //    * CloudFront forwards only GET, HEAD, and OPTIONS requests.
    //
    //    * CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE
    //    requests.
    //
    // If you pick the third choice, you may need to restrict access to your Amazon
    // S3 bucket or to your custom origin so users can't perform operations that
    // you don't want them to. For example, you might not want users to have permissions
    // to delete objects from your origin.
    AllowedMethods *AllowedMethods `type:"structure"`

    // Whether you want CloudFront to automatically compress certain files for this
    // cache behavior. If so, specify true; if not, specify false. For more information,
    // see Serving Compressed Files (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html)
    // in the Amazon CloudFront Developer Guide.
    Compress *bool `type:"boolean"`

    // The default amount of time that you want objects to stay in CloudFront caches
    // before CloudFront forwards another request to your origin to determine whether
    // the object has been updated. The value that you specify applies only when
    // your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control
    // s-maxage, and Expires to objects. For more information, see Specifying How
    // Long Objects and Errors Stay in a CloudFront Edge Cache (Expiration) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
    // in the Amazon CloudFront Developer Guide.
    DefaultTTL *int64 `type:"long"`

    // A complex type that specifies how CloudFront handles query strings and cookies.
    //
    // ForwardedValues is a required field
    ForwardedValues *ForwardedValues `type:"structure" required:"true"`

    // A complex type that contains zero or more Lambda function associations for
    // a cache behavior.
    LambdaFunctionAssociations *LambdaFunctionAssociations `type:"structure"`

    MaxTTL *int64 `type:"long"`

    // The minimum amount of time that you want objects to stay in CloudFront caches
    // before CloudFront forwards another request to your origin to determine whether
    // the object has been updated. For more information, see Specifying How Long
    // Objects and Errors Stay in a CloudFront Edge Cache (Expiration) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    //
    // You must specify 0 for MinTTL if you configure CloudFront to forward all
    // headers to your origin (under Headers, if you specify 1 for Quantity and
    // * for Name).
    //
    // MinTTL is a required field
    MinTTL *int64 `type:"long" required:"true"`

    // Indicates whether you want to distribute media files in the Microsoft Smooth
    // Streaming format using the origin that is associated with this cache behavior.
    // If so, specify true; if not, specify false. If you specify true for SmoothStreaming,
    // you can still distribute other content using this cache behavior if the content
    // matches the value of PathPattern.
    SmoothStreaming *bool `type:"boolean"`

    // The value of ID for the origin that you want CloudFront to route requests
    // to when a request matches the path pattern either for a cache behavior or
    // for the default cache behavior.
    //
    // TargetOriginId is a required field
    TargetOriginId *string `type:"string" required:"true"`

    // A complex type that specifies the AWS accounts, if any, that you want to
    // allow to create signed URLs for private content.
    //
    // If you want to require signed URLs in requests for objects in the target
    // origin that match the PathPattern for this cache behavior, specify true for
    // Enabled, and specify the applicable values for Quantity and Items. For more
    // information, see Serving Private Content through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    //
    // If you don't want to require signed URLs in requests for objects that match
    // PathPattern, specify false for Enabled and 0 for Quantity. Omit Items.
    //
    // To add, change, or remove one or more trusted signers, change Enabled to
    // true (if it's currently false), change Quantity as applicable, and specify
    // all of the trusted signers that you want to include in the updated distribution.
    //
    // TrustedSigners is a required field
    TrustedSigners *TrustedSigners `type:"structure" required:"true"`

    // The protocol that viewers can use to access the files in the origin specified
    // by TargetOriginId when a request matches the path pattern in PathPattern.
    // You can specify the following options:
    //
    //    * allow-all: Viewers can use HTTP or HTTPS.
    //
    //    * redirect-to-https: If a viewer submits an HTTP request, CloudFront returns
    //    an HTTP status code of 301 (Moved Permanently) to the viewer along with
    //    the HTTPS URL. The viewer then resubmits the request using the new URL.
    //
    //    * https-only: If a viewer sends an HTTP request, CloudFront returns an
    //    HTTP status code of 403 (Forbidden).
    //
    // For more information about requiring the HTTPS protocol, see Using an HTTPS
    // Connection to Access Your Objects (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // The only way to guarantee that viewers retrieve an object that was fetched
    // from the origin using HTTPS is never to use any other protocol to fetch the
    // object. If you have recently changed from HTTP to HTTPS, we recommend that
    // you clear your objects' cache because cached objects are protocol agnostic.
    // That means that an edge location will return an object from the cache regardless
    // of whether the current request protocol matches the protocol used previously.
    // For more information, see Specifying How Long Objects and Errors Stay in
    // a CloudFront Edge Cache (Expiration) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // ViewerProtocolPolicy is a required field
    ViewerProtocolPolicy *string `type:"string" required:"true" enum:"ViewerProtocolPolicy"`
    // contains filtered or unexported fields
}

func (DefaultCacheBehavior) GoString

func (s DefaultCacheBehavior) GoString() string

GoString returns the string representation

func (*DefaultCacheBehavior) SetAllowedMethods

func (s *DefaultCacheBehavior) SetAllowedMethods(v *AllowedMethods) *DefaultCacheBehavior

SetAllowedMethods sets the AllowedMethods field's value.

func (*DefaultCacheBehavior) SetCompress

func (s *DefaultCacheBehavior) SetCompress(v bool) *DefaultCacheBehavior

SetCompress sets the Compress field's value.

func (*DefaultCacheBehavior) SetDefaultTTL

func (s *DefaultCacheBehavior) SetDefaultTTL(v int64) *DefaultCacheBehavior

SetDefaultTTL sets the DefaultTTL field's value.

func (*DefaultCacheBehavior) SetForwardedValues

func (s *DefaultCacheBehavior) SetForwardedValues(v *ForwardedValues) *DefaultCacheBehavior

SetForwardedValues sets the ForwardedValues field's value.

func (*DefaultCacheBehavior) SetLambdaFunctionAssociations

func (s *DefaultCacheBehavior) SetLambdaFunctionAssociations(v *LambdaFunctionAssociations) *DefaultCacheBehavior

SetLambdaFunctionAssociations sets the LambdaFunctionAssociations field's value.

func (*DefaultCacheBehavior) SetMaxTTL

func (s *DefaultCacheBehavior) SetMaxTTL(v int64) *DefaultCacheBehavior

SetMaxTTL sets the MaxTTL field's value.

func (*DefaultCacheBehavior) SetMinTTL

func (s *DefaultCacheBehavior) SetMinTTL(v int64) *DefaultCacheBehavior

SetMinTTL sets the MinTTL field's value.

func (*DefaultCacheBehavior) SetSmoothStreaming

func (s *DefaultCacheBehavior) SetSmoothStreaming(v bool) *DefaultCacheBehavior

SetSmoothStreaming sets the SmoothStreaming field's value.

func (*DefaultCacheBehavior) SetTargetOriginId

func (s *DefaultCacheBehavior) SetTargetOriginId(v string) *DefaultCacheBehavior

SetTargetOriginId sets the TargetOriginId field's value.

func (*DefaultCacheBehavior) SetTrustedSigners

func (s *DefaultCacheBehavior) SetTrustedSigners(v *TrustedSigners) *DefaultCacheBehavior

SetTrustedSigners sets the TrustedSigners field's value.

func (*DefaultCacheBehavior) SetViewerProtocolPolicy

func (s *DefaultCacheBehavior) SetViewerProtocolPolicy(v string) *DefaultCacheBehavior

SetViewerProtocolPolicy sets the ViewerProtocolPolicy field's value.

func (DefaultCacheBehavior) String

func (s DefaultCacheBehavior) String() string

String returns the string representation

func (*DefaultCacheBehavior) Validate

func (s *DefaultCacheBehavior) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteCloudFrontOriginAccessIdentityInput

Deletes a origin access identity. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteCloudFrontOriginAccessIdentityRequest

type DeleteCloudFrontOriginAccessIdentityInput struct {

    // The origin access identity's ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`

    // The value of the ETag header you received from a previous GET or PUT request.
    // For example: E2QWRUHAPOMQZL.
    IfMatch *string `location:"header" locationName:"If-Match" type:"string"`
    // contains filtered or unexported fields
}

func (DeleteCloudFrontOriginAccessIdentityInput) GoString

func (s DeleteCloudFrontOriginAccessIdentityInput) GoString() string

GoString returns the string representation

func (*DeleteCloudFrontOriginAccessIdentityInput) SetId

func (s *DeleteCloudFrontOriginAccessIdentityInput) SetId(v string) *DeleteCloudFrontOriginAccessIdentityInput

SetId sets the Id field's value.

func (*DeleteCloudFrontOriginAccessIdentityInput) SetIfMatch

func (s *DeleteCloudFrontOriginAccessIdentityInput) SetIfMatch(v string) *DeleteCloudFrontOriginAccessIdentityInput

SetIfMatch sets the IfMatch field's value.

func (DeleteCloudFrontOriginAccessIdentityInput) String

func (s DeleteCloudFrontOriginAccessIdentityInput) String() string

String returns the string representation

func (*DeleteCloudFrontOriginAccessIdentityInput) Validate

func (s *DeleteCloudFrontOriginAccessIdentityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteCloudFrontOriginAccessIdentityOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteCloudFrontOriginAccessIdentityOutput

type DeleteCloudFrontOriginAccessIdentityOutput struct {
    // contains filtered or unexported fields
}

func (DeleteCloudFrontOriginAccessIdentityOutput) GoString

func (s DeleteCloudFrontOriginAccessIdentityOutput) GoString() string

GoString returns the string representation

func (DeleteCloudFrontOriginAccessIdentityOutput) String

func (s DeleteCloudFrontOriginAccessIdentityOutput) String() string

String returns the string representation

type DeleteDistributionInput

This action deletes a web distribution. To delete a web distribution using the CloudFront API, perform the following steps.

To delete a web distribution using the CloudFront API:

Disable the web distribution

Submit a GET Distribution Config request to get the current configuration and the Etag header for the distribution.

Update the XML document that was returned in the response to your GET Distribution Config request to change the value of Enabled to false.

Submit a PUT Distribution Config request to update the configuration for your distribution. In the request body, include the XML document that you updated in Step 3. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Distribution Config request in Step 2.

Review the response to the PUT Distribution Config request to confirm that the distribution was successfully disabled.

Submit a GET Distribution request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed.

Submit a DELETE Distribution request. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Distribution Config request in Step 6.

Review the response to your DELETE Distribution request to confirm that the distribution was successfully deleted.

For information about deleting a distribution using the CloudFront console, see Deleting a Distribution (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/HowToDeleteDistribution.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteDistributionRequest

type DeleteDistributionInput struct {

    // The distribution ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`

    // The value of the ETag header that you received when you disabled the distribution.
    // For example: E2QWRUHAPOMQZL.
    IfMatch *string `location:"header" locationName:"If-Match" type:"string"`
    // contains filtered or unexported fields
}

func (DeleteDistributionInput) GoString

func (s DeleteDistributionInput) GoString() string

GoString returns the string representation

func (*DeleteDistributionInput) SetId

func (s *DeleteDistributionInput) SetId(v string) *DeleteDistributionInput

SetId sets the Id field's value.

func (*DeleteDistributionInput) SetIfMatch

func (s *DeleteDistributionInput) SetIfMatch(v string) *DeleteDistributionInput

SetIfMatch sets the IfMatch field's value.

func (DeleteDistributionInput) String

func (s DeleteDistributionInput) String() string

String returns the string representation

func (*DeleteDistributionInput) Validate

func (s *DeleteDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDistributionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteDistributionOutput

type DeleteDistributionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDistributionOutput) GoString

func (s DeleteDistributionOutput) GoString() string

GoString returns the string representation

func (DeleteDistributionOutput) String

func (s DeleteDistributionOutput) String() string

String returns the string representation

type DeleteStreamingDistributionInput

The request to delete a streaming distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteStreamingDistributionRequest

type DeleteStreamingDistributionInput struct {

    // The distribution ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`

    // The value of the ETag header that you received when you disabled the streaming
    // distribution. For example: E2QWRUHAPOMQZL.
    IfMatch *string `location:"header" locationName:"If-Match" type:"string"`
    // contains filtered or unexported fields
}

func (DeleteStreamingDistributionInput) GoString

func (s DeleteStreamingDistributionInput) GoString() string

GoString returns the string representation

func (*DeleteStreamingDistributionInput) SetId

func (s *DeleteStreamingDistributionInput) SetId(v string) *DeleteStreamingDistributionInput

SetId sets the Id field's value.

func (*DeleteStreamingDistributionInput) SetIfMatch

func (s *DeleteStreamingDistributionInput) SetIfMatch(v string) *DeleteStreamingDistributionInput

SetIfMatch sets the IfMatch field's value.

func (DeleteStreamingDistributionInput) String

func (s DeleteStreamingDistributionInput) String() string

String returns the string representation

func (*DeleteStreamingDistributionInput) Validate

func (s *DeleteStreamingDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteStreamingDistributionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DeleteStreamingDistributionOutput

type DeleteStreamingDistributionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteStreamingDistributionOutput) GoString

func (s DeleteStreamingDistributionOutput) GoString() string

GoString returns the string representation

func (DeleteStreamingDistributionOutput) String

func (s DeleteStreamingDistributionOutput) String() string

String returns the string representation

type Distribution

The distribution's information. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Distribution

type Distribution struct {

    // The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5,
    // where 123456789012 is your AWS account ID.
    //
    // ARN is a required field
    ARN *string `type:"string" required:"true"`

    // CloudFront automatically adds this element to the response only if you've
    // set up the distribution to serve private content with signed URLs. The element
    // lists the key pair IDs that CloudFront is aware of for each trusted signer.
    // The Signer child element lists the AWS account number of the trusted signer
    // (or an empty Self element if the signer is you). The Signer element also
    // includes the IDs of any active key pairs associated with the trusted signer's
    // AWS account. If no KeyPairId element appears for a Signer, that signer can't
    // create working signed URLs.
    //
    // ActiveTrustedSigners is a required field
    ActiveTrustedSigners *ActiveTrustedSigners `type:"structure" required:"true"`

    // The current configuration information for the distribution. Send a GET request
    // to the /CloudFront API version/distribution ID/config resource.
    //
    // DistributionConfig is a required field
    DistributionConfig *DistributionConfig `type:"structure" required:"true"`

    // The domain name corresponding to the distribution. For example: d604721fxaaqy9.cloudfront.net.
    //
    // DomainName is a required field
    DomainName *string `type:"string" required:"true"`

    // The identifier for the distribution. For example: EDFDVBD632BHDS5.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // The number of invalidation batches currently in progress.
    //
    // InProgressInvalidationBatches is a required field
    InProgressInvalidationBatches *int64 `type:"integer" required:"true"`

    // The date and time the distribution was last modified.
    //
    // LastModifiedTime is a required field
    LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // This response element indicates the current status of the distribution. When
    // the status is Deployed, the distribution's information is fully propagated
    // to all CloudFront edge locations.
    //
    // Status is a required field
    Status *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (Distribution) GoString

func (s Distribution) GoString() string

GoString returns the string representation

func (*Distribution) SetARN

func (s *Distribution) SetARN(v string) *Distribution

SetARN sets the ARN field's value.

func (*Distribution) SetActiveTrustedSigners

func (s *Distribution) SetActiveTrustedSigners(v *ActiveTrustedSigners) *Distribution

SetActiveTrustedSigners sets the ActiveTrustedSigners field's value.

func (*Distribution) SetDistributionConfig

func (s *Distribution) SetDistributionConfig(v *DistributionConfig) *Distribution

SetDistributionConfig sets the DistributionConfig field's value.

func (*Distribution) SetDomainName

func (s *Distribution) SetDomainName(v string) *Distribution

SetDomainName sets the DomainName field's value.

func (*Distribution) SetId

func (s *Distribution) SetId(v string) *Distribution

SetId sets the Id field's value.

func (*Distribution) SetInProgressInvalidationBatches

func (s *Distribution) SetInProgressInvalidationBatches(v int64) *Distribution

SetInProgressInvalidationBatches sets the InProgressInvalidationBatches field's value.

func (*Distribution) SetLastModifiedTime

func (s *Distribution) SetLastModifiedTime(v time.Time) *Distribution

SetLastModifiedTime sets the LastModifiedTime field's value.

func (*Distribution) SetStatus

func (s *Distribution) SetStatus(v string) *Distribution

SetStatus sets the Status field's value.

func (Distribution) String

func (s Distribution) String() string

String returns the string representation

type DistributionConfig

A distribution configuration. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DistributionConfig

type DistributionConfig struct {

    // A complex type that contains information about CNAMEs (alternate domain names),
    // if any, for this distribution.
    Aliases *Aliases `type:"structure"`

    // A complex type that contains zero or more CacheBehavior elements.
    CacheBehaviors *CacheBehaviors `type:"structure"`

    // A unique value (for example, a date-time stamp) that ensures that the request
    // can't be replayed.
    //
    // If the value of CallerReference is new (regardless of the content of the
    // DistributionConfig object), CloudFront creates a new distribution.
    //
    // If CallerReference is a value you already sent in a previous request to create
    // a distribution, and if the content of the DistributionConfig is identical
    // to the original request (ignoring white space), CloudFront returns the same
    // the response that it returned to the original request.
    //
    // If CallerReference is a value you already sent in a previous request to create
    // a distribution but the content of the DistributionConfig is different from
    // the original request, CloudFront returns a DistributionAlreadyExists error.
    //
    // CallerReference is a required field
    CallerReference *string `type:"string" required:"true"`

    // Any comments you want to include about the distribution.
    //
    // If you don't want to specify a comment, include an empty Comment element.
    //
    // To delete an existing comment, update the distribution configuration and
    // include an empty Comment element.
    //
    // To add or change a comment, update the distribution configuration and specify
    // the new comment.
    //
    // Comment is a required field
    Comment *string `type:"string" required:"true"`

    // A complex type that controls the following:
    //
    //    * Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range
    //    with custom error messages before returning the response to the viewer.
    //
    //    * How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
    //
    // For more information about custom error pages, see Customizing Error Responses
    // (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
    // in the Amazon CloudFront Developer Guide.
    CustomErrorResponses *CustomErrorResponses `type:"structure"`

    // A complex type that describes the default cache behavior if you do not 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.
    //
    // DefaultCacheBehavior is a required field
    DefaultCacheBehavior *DefaultCacheBehavior `type:"structure" required:"true"`

    // The object that you want CloudFront to request from your origin (for example,
    // index.html) when a viewer requests the root URL for your distribution (http://www.example.com)
    // instead of an object in your distribution (http://www.example.com/product-description.html).
    // Specifying a default root object avoids exposing the contents of your distribution.
    //
    // Specify only the object name, for example, index.html. Do not add a / before
    // the object name.
    //
    // If you don't want to specify a default root object when you create a distribution,
    // include an empty DefaultRootObject element.
    //
    // To delete the default root object from an existing distribution, update the
    // distribution configuration and include an empty DefaultRootObject element.
    //
    // To replace the default root object, update the distribution configuration
    // and specify the new object.
    //
    // For more information about the default root object, see Creating a Default
    // Root Object (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html)
    // in the Amazon CloudFront Developer Guide.
    DefaultRootObject *string `type:"string"`

    // From this field, you can enable or disable the selected distribution.
    //
    // If you specify false for Enabled but you specify values for Bucket and Prefix,
    // the values are automatically deleted.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // (Optional) 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 automatically use an earlier
    // HTTP version.
    //
    // For viewers and CloudFront to use HTTP/2, viewers must support TLS 1.2 or
    // later, and must support Server Name Identification (SNI).
    //
    // In general, configuring CloudFront to communicate with viewers using HTTP/2
    // reduces latency. You can improve performance by optimizing for HTTP/2. For
    // more information, do an Internet search for "http/2 optimization."
    HttpVersion *string `type:"string" enum:"HttpVersion"`

    // If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address
    // for your distribution, specify true. If you specify false, CloudFront responds
    // to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses.
    // This allows viewers to submit a second request, for an IPv4 address for your
    // distribution.
    //
    // In general, you should enable IPv6 if you have users on IPv6 networks who
    // want to access your content. However, if you're using signed URLs or signed
    // cookies to restrict access to your content, and if you're using a custom
    // policy that includes the IpAddress parameter to restrict the IP addresses
    // that can access your content, do not enable IPv6. If you want to restrict
    // access to some content by IP address and not restrict access to other content
    // (or restrict access but not by IP address), you can create two distributions.
    // For more information, see Creating a Signed URL Using a Custom Policy (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-creating-signed-url-custom-policy.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // If you're using an Amazon Route 53 alias resource record set to route traffic
    // to your CloudFront distribution, you need to create a second alias resource
    // record set when both of the following are true:
    //
    //    * You enable IPv6 for the distribution
    //
    //    * You're using alternate domain names in the URLs for your objects
    //
    // For more information, see Routing Traffic to an Amazon CloudFront Web Distribution
    // by Using Your Domain Name (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-cloudfront-distribution.html)
    // in the Amazon Route 53 Developer Guide.
    //
    // If you created a CNAME resource record set, either with Amazon Route 53 or
    // with another DNS service, you don't need to make any changes. A CNAME record
    // will route traffic to your distribution regardless of the IP address format
    // of the viewer request.
    IsIPV6Enabled *bool `type:"boolean"`

    // A complex type that controls whether access logs are written for the distribution.
    //
    // For more information about logging, see Access Logs (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html)
    // in the Amazon CloudFront Developer Guide.
    Logging *LoggingConfig `type:"structure"`

    // A complex type that contains information about origins for this distribution.
    //
    // Origins is a required field
    Origins *Origins `type:"structure" required:"true"`

    // The price class that corresponds with the maximum price that you want to
    // pay for CloudFront service. If you specify PriceClass_All, CloudFront responds
    // to requests for your objects from all CloudFront edge locations.
    //
    // If you specify a price class other than PriceClass_All, CloudFront serves
    // your objects from the CloudFront edge location that has the lowest latency
    // among the edge locations in your price class. Viewers who are in or near
    // regions that are excluded from your specified price class may encounter slower
    // performance.
    //
    // For more information about price classes, see Choosing the Price Class for
    // a CloudFront Distribution (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PriceClass.html)
    // in the Amazon CloudFront Developer Guide. For information about CloudFront
    // pricing, including how price classes map to CloudFront regions, see Amazon
    // CloudFront Pricing (https://aws.amazon.com/cloudfront/pricing/).
    PriceClass *string `type:"string" enum:"PriceClass"`

    // A complex type that identifies ways in which you want to restrict distribution
    // of your content.
    Restrictions *Restrictions `type:"structure"`

    // A complex type that specifies the following:
    //
    //    * Which SSL/TLS certificate to use when viewers request objects using
    //    HTTPS
    //
    //    * Whether you want CloudFront to use dedicated IP addresses or SNI when
    //    you're using alternate domain names in your object names
    //
    //    * The minimum protocol version that you want CloudFront to use when communicating
    //    with viewers
    //
    // For more information, see Using an HTTPS Connection to Access Your Objects
    // (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    ViewerCertificate *ViewerCertificate `type:"structure"`

    // A unique identifier that specifies the AWS WAF web ACL, if any, to associate
    // with this distribution.
    //
    // AWS WAF is a web application firewall that lets you monitor the HTTP and
    // HTTPS requests that are forwarded to CloudFront, and lets you control access
    // to your content. Based on conditions that you specify, such as the IP addresses
    // that requests originate from or the values of query strings, CloudFront responds
    // to requests either with the requested content or with an HTTP 403 status
    // code (Forbidden). You can also configure CloudFront to return a custom error
    // page when a request is blocked. For more information about AWS WAF, see the
    // AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html).
    WebACLId *string `type:"string"`
    // contains filtered or unexported fields
}

func (DistributionConfig) GoString

func (s DistributionConfig) GoString() string

GoString returns the string representation

func (*DistributionConfig) SetAliases

func (s *DistributionConfig) SetAliases(v *Aliases) *DistributionConfig

SetAliases sets the Aliases field's value.

func (*DistributionConfig) SetCacheBehaviors

func (s *DistributionConfig) SetCacheBehaviors(v *CacheBehaviors) *DistributionConfig

SetCacheBehaviors sets the CacheBehaviors field's value.

func (*DistributionConfig) SetCallerReference

func (s *DistributionConfig) SetCallerReference(v string) *DistributionConfig

SetCallerReference sets the CallerReference field's value.

func (*DistributionConfig) SetComment

func (s *DistributionConfig) SetComment(v string) *DistributionConfig

SetComment sets the Comment field's value.

func (*DistributionConfig) SetCustomErrorResponses

func (s *DistributionConfig) SetCustomErrorResponses(v *CustomErrorResponses) *DistributionConfig

SetCustomErrorResponses sets the CustomErrorResponses field's value.

func (*DistributionConfig) SetDefaultCacheBehavior

func (s *DistributionConfig) SetDefaultCacheBehavior(v *DefaultCacheBehavior) *DistributionConfig

SetDefaultCacheBehavior sets the DefaultCacheBehavior field's value.

func (*DistributionConfig) SetDefaultRootObject

func (s *DistributionConfig) SetDefaultRootObject(v string) *DistributionConfig

SetDefaultRootObject sets the DefaultRootObject field's value.

func (*DistributionConfig) SetEnabled

func (s *DistributionConfig) SetEnabled(v bool) *DistributionConfig

SetEnabled sets the Enabled field's value.

func (*DistributionConfig) SetHttpVersion

func (s *DistributionConfig) SetHttpVersion(v string) *DistributionConfig

SetHttpVersion sets the HttpVersion field's value.

func (*DistributionConfig) SetIsIPV6Enabled

func (s *DistributionConfig) SetIsIPV6Enabled(v bool) *DistributionConfig

SetIsIPV6Enabled sets the IsIPV6Enabled field's value.

func (*DistributionConfig) SetLogging

func (s *DistributionConfig) SetLogging(v *LoggingConfig) *DistributionConfig

SetLogging sets the Logging field's value.

func (*DistributionConfig) SetOrigins

func (s *DistributionConfig) SetOrigins(v *Origins) *DistributionConfig

SetOrigins sets the Origins field's value.

func (*DistributionConfig) SetPriceClass

func (s *DistributionConfig) SetPriceClass(v string) *DistributionConfig

SetPriceClass sets the PriceClass field's value.

func (*DistributionConfig) SetRestrictions

func (s *DistributionConfig) SetRestrictions(v *Restrictions) *DistributionConfig

SetRestrictions sets the Restrictions field's value.

func (*DistributionConfig) SetViewerCertificate

func (s *DistributionConfig) SetViewerCertificate(v *ViewerCertificate) *DistributionConfig

SetViewerCertificate sets the ViewerCertificate field's value.

func (*DistributionConfig) SetWebACLId

func (s *DistributionConfig) SetWebACLId(v string) *DistributionConfig

SetWebACLId sets the WebACLId field's value.

func (DistributionConfig) String

func (s DistributionConfig) String() string

String returns the string representation

func (*DistributionConfig) Validate

func (s *DistributionConfig) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DistributionConfigWithTags

A distribution Configuration and a list of tags to be associated with the distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DistributionConfigWithTags

type DistributionConfigWithTags struct {

    // A distribution configuration.
    //
    // DistributionConfig is a required field
    DistributionConfig *DistributionConfig `type:"structure" required:"true"`

    // A complex type that contains zero or more Tag elements.
    //
    // Tags is a required field
    Tags *Tags `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (DistributionConfigWithTags) GoString

func (s DistributionConfigWithTags) GoString() string

GoString returns the string representation

func (*DistributionConfigWithTags) SetDistributionConfig

func (s *DistributionConfigWithTags) SetDistributionConfig(v *DistributionConfig) *DistributionConfigWithTags

SetDistributionConfig sets the DistributionConfig field's value.

func (*DistributionConfigWithTags) SetTags

func (s *DistributionConfigWithTags) SetTags(v *Tags) *DistributionConfigWithTags

SetTags sets the Tags field's value.

func (DistributionConfigWithTags) String

func (s DistributionConfigWithTags) String() string

String returns the string representation

func (*DistributionConfigWithTags) Validate

func (s *DistributionConfigWithTags) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DistributionList

A distribution list. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DistributionList

type DistributionList struct {

    // A flag that indicates whether more distributions remain to be listed. If
    // your results were truncated, you can make a follow-up pagination request
    // using the Marker request parameter to retrieve more distributions in the
    // list.
    //
    // IsTruncated is a required field
    IsTruncated *bool `type:"boolean" required:"true"`

    // A complex type that contains one DistributionSummary element for each distribution
    // that was created by the current AWS account.
    Items []*DistributionSummary `locationNameList:"DistributionSummary" type:"list"`

    // The value you provided for the Marker request parameter.
    //
    // Marker is a required field
    Marker *string `type:"string" required:"true"`

    // The value you provided for the MaxItems request parameter.
    //
    // MaxItems is a required field
    MaxItems *int64 `type:"integer" required:"true"`

    // If IsTruncated is true, this element is present and contains the value you
    // can use for the Marker request parameter to continue listing your distributions
    // where they left off.
    NextMarker *string `type:"string"`

    // The number of distributions that were created by the current AWS account.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (DistributionList) GoString

func (s DistributionList) GoString() string

GoString returns the string representation

func (*DistributionList) SetIsTruncated

func (s *DistributionList) SetIsTruncated(v bool) *DistributionList

SetIsTruncated sets the IsTruncated field's value.

func (*DistributionList) SetItems

func (s *DistributionList) SetItems(v []*DistributionSummary) *DistributionList

SetItems sets the Items field's value.

func (*DistributionList) SetMarker

func (s *DistributionList) SetMarker(v string) *DistributionList

SetMarker sets the Marker field's value.

func (*DistributionList) SetMaxItems

func (s *DistributionList) SetMaxItems(v int64) *DistributionList

SetMaxItems sets the MaxItems field's value.

func (*DistributionList) SetNextMarker

func (s *DistributionList) SetNextMarker(v string) *DistributionList

SetNextMarker sets the NextMarker field's value.

func (*DistributionList) SetQuantity

func (s *DistributionList) SetQuantity(v int64) *DistributionList

SetQuantity sets the Quantity field's value.

func (DistributionList) String

func (s DistributionList) String() string

String returns the string representation

type DistributionSummary

A summary of the information about a CloudFront distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/DistributionSummary

type DistributionSummary struct {

    // The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5,
    // where 123456789012 is your AWS account ID.
    //
    // ARN is a required field
    ARN *string `type:"string" required:"true"`

    // A complex type that contains information about CNAMEs (alternate domain names),
    // if any, for this distribution.
    //
    // Aliases is a required field
    Aliases *Aliases `type:"structure" required:"true"`

    // A complex type that contains zero or more CacheBehavior elements.
    //
    // CacheBehaviors is a required field
    CacheBehaviors *CacheBehaviors `type:"structure" required:"true"`

    // The comment originally specified when this distribution was created.
    //
    // Comment is a required field
    Comment *string `type:"string" required:"true"`

    // A complex type that contains zero or more CustomErrorResponses elements.
    //
    // CustomErrorResponses is a required field
    CustomErrorResponses *CustomErrorResponses `type:"structure" required:"true"`

    // A complex type that describes the default cache behavior if you do not 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.
    //
    // DefaultCacheBehavior is a required field
    DefaultCacheBehavior *DefaultCacheBehavior `type:"structure" required:"true"`

    // The domain name that corresponds to the distribution. For example: d604721fxaaqy9.cloudfront.net.
    //
    // DomainName is a required field
    DomainName *string `type:"string" required:"true"`

    // Whether the distribution is enabled to accept user requests for content.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // 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.
    //
    // HttpVersion is a required field
    HttpVersion *string `type:"string" required:"true" enum:"HttpVersion"`

    // The identifier for the distribution. For example: EDFDVBD632BHDS5.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for
    // your distribution.
    //
    // IsIPV6Enabled is a required field
    IsIPV6Enabled *bool `type:"boolean" required:"true"`

    // The date and time the distribution was last modified.
    //
    // LastModifiedTime is a required field
    LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // A complex type that contains information about origins for this distribution.
    //
    // Origins is a required field
    Origins *Origins `type:"structure" required:"true"`

    // PriceClass is a required field
    PriceClass *string `type:"string" required:"true" enum:"PriceClass"`

    // A complex type that identifies ways in which you want to restrict distribution
    // of your content.
    //
    // Restrictions is a required field
    Restrictions *Restrictions `type:"structure" required:"true"`

    // The current status of the distribution. When the status is Deployed, the
    // distribution's information is propagated to all CloudFront edge locations.
    //
    // Status is a required field
    Status *string `type:"string" required:"true"`

    // A complex type that specifies the following:
    //
    //    * Which SSL/TLS certificate to use when viewers request objects using
    //    HTTPS
    //
    //    * Whether you want CloudFront to use dedicated IP addresses or SNI when
    //    you're using alternate domain names in your object names
    //
    //    * The minimum protocol version that you want CloudFront to use when communicating
    //    with viewers
    //
    // For more information, see Using an HTTPS Connection to Access Your Objects
    // (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    //
    // ViewerCertificate is a required field
    ViewerCertificate *ViewerCertificate `type:"structure" required:"true"`

    // The Web ACL Id (if any) associated with the distribution.
    //
    // WebACLId is a required field
    WebACLId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DistributionSummary) GoString

func (s DistributionSummary) GoString() string

GoString returns the string representation

func (*DistributionSummary) SetARN

func (s *DistributionSummary) SetARN(v string) *DistributionSummary

SetARN sets the ARN field's value.

func (*DistributionSummary) SetAliases

func (s *DistributionSummary) SetAliases(v *Aliases) *DistributionSummary

SetAliases sets the Aliases field's value.

func (*DistributionSummary) SetCacheBehaviors

func (s *DistributionSummary) SetCacheBehaviors(v *CacheBehaviors) *DistributionSummary

SetCacheBehaviors sets the CacheBehaviors field's value.

func (*DistributionSummary) SetComment

func (s *DistributionSummary) SetComment(v string) *DistributionSummary

SetComment sets the Comment field's value.

func (*DistributionSummary) SetCustomErrorResponses

func (s *DistributionSummary) SetCustomErrorResponses(v *CustomErrorResponses) *DistributionSummary

SetCustomErrorResponses sets the CustomErrorResponses field's value.

func (*DistributionSummary) SetDefaultCacheBehavior

func (s *DistributionSummary) SetDefaultCacheBehavior(v *DefaultCacheBehavior) *DistributionSummary

SetDefaultCacheBehavior sets the DefaultCacheBehavior field's value.

func (*DistributionSummary) SetDomainName

func (s *DistributionSummary) SetDomainName(v string) *DistributionSummary

SetDomainName sets the DomainName field's value.

func (*DistributionSummary) SetEnabled

func (s *DistributionSummary) SetEnabled(v bool) *DistributionSummary

SetEnabled sets the Enabled field's value.

func (*DistributionSummary) SetHttpVersion

func (s *DistributionSummary) SetHttpVersion(v string) *DistributionSummary

SetHttpVersion sets the HttpVersion field's value.

func (*DistributionSummary) SetId

func (s *DistributionSummary) SetId(v string) *DistributionSummary

SetId sets the Id field's value.

func (*DistributionSummary) SetIsIPV6Enabled

func (s *DistributionSummary) SetIsIPV6Enabled(v bool) *DistributionSummary

SetIsIPV6Enabled sets the IsIPV6Enabled field's value.

func (*DistributionSummary) SetLastModifiedTime

func (s *DistributionSummary) SetLastModifiedTime(v time.Time) *DistributionSummary

SetLastModifiedTime sets the LastModifiedTime field's value.

func (*DistributionSummary) SetOrigins

func (s *DistributionSummary) SetOrigins(v *Origins) *DistributionSummary

SetOrigins sets the Origins field's value.

func (*DistributionSummary) SetPriceClass

func (s *DistributionSummary) SetPriceClass(v string) *DistributionSummary

SetPriceClass sets the PriceClass field's value.

func (*DistributionSummary) SetRestrictions

func (s *DistributionSummary) SetRestrictions(v *Restrictions) *DistributionSummary

SetRestrictions sets the Restrictions field's value.

func (*DistributionSummary) SetStatus

func (s *DistributionSummary) SetStatus(v string) *DistributionSummary

SetStatus sets the Status field's value.

func (*DistributionSummary) SetViewerCertificate

func (s *DistributionSummary) SetViewerCertificate(v *ViewerCertificate) *DistributionSummary

SetViewerCertificate sets the ViewerCertificate field's value.

func (*DistributionSummary) SetWebACLId

func (s *DistributionSummary) SetWebACLId(v string) *DistributionSummary

SetWebACLId sets the WebACLId field's value.

func (DistributionSummary) String

func (s DistributionSummary) String() string

String returns the string representation

type ForwardedValues

A complex type that specifies how CloudFront handles query strings and cookies. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ForwardedValues

type ForwardedValues struct {

    // A complex type that specifies whether you want CloudFront to forward cookies
    // to the origin and, if so, which ones. For more information about forwarding
    // cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies
    // (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // Cookies is a required field
    Cookies *CookiePreference `type:"structure" required:"true"`

    // A complex type that specifies the Headers, if any, that you want CloudFront
    // to vary upon for this cache behavior.
    Headers *Headers `type:"structure"`

    // Indicates whether you want CloudFront to forward query strings to the origin
    // that is associated with this cache behavior and cache based on the query
    // string parameters. CloudFront behavior depends on the value of QueryString
    // and on the values that you specify for QueryStringCacheKeys, if any:
    //
    // If you specify true for QueryString and you don't specify any values for
    // QueryStringCacheKeys, CloudFront forwards all query string parameters to
    // the origin and caches based on all query string parameters. Depending on
    // how many query string parameters and values you have, this can adversely
    // affect performance because CloudFront must forward more requests to the origin.
    //
    // If you specify true for QueryString and you specify one or more values for
    // QueryStringCacheKeys, CloudFront forwards all query string parameters to
    // the origin, but it only caches based on the query string parameters that
    // you specify.
    //
    // If you specify false for QueryString, CloudFront doesn't forward any query
    // string parameters to the origin, and doesn't cache based on query string
    // parameters.
    //
    // For more information, see Configuring CloudFront to Cache Based on Query
    // String Parameters (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/QueryStringParameters.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // QueryString is a required field
    QueryString *bool `type:"boolean" required:"true"`

    // A complex type that contains information about the query string parameters
    // that you want CloudFront to use for caching for this cache behavior.
    QueryStringCacheKeys *QueryStringCacheKeys `type:"structure"`
    // contains filtered or unexported fields
}

func (ForwardedValues) GoString

func (s ForwardedValues) GoString() string

GoString returns the string representation

func (*ForwardedValues) SetCookies

func (s *ForwardedValues) SetCookies(v *CookiePreference) *ForwardedValues

SetCookies sets the Cookies field's value.

func (*ForwardedValues) SetHeaders

func (s *ForwardedValues) SetHeaders(v *Headers) *ForwardedValues

SetHeaders sets the Headers field's value.

func (*ForwardedValues) SetQueryString

func (s *ForwardedValues) SetQueryString(v bool) *ForwardedValues

SetQueryString sets the QueryString field's value.

func (*ForwardedValues) SetQueryStringCacheKeys

func (s *ForwardedValues) SetQueryStringCacheKeys(v *QueryStringCacheKeys) *ForwardedValues

SetQueryStringCacheKeys sets the QueryStringCacheKeys field's value.

func (ForwardedValues) String

func (s ForwardedValues) String() string

String returns the string representation

func (*ForwardedValues) Validate

func (s *ForwardedValues) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GeoRestriction

A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GeoRestriction

type GeoRestriction struct {

    // A complex type that contains a Location element for each country in which
    // you want CloudFront either to distribute your content (whitelist) or not
    // distribute your content (blacklist).
    //
    // The Location element is a two-letter, uppercase country code for a country
    // that you want to include in your blacklist or whitelist. Include one Location
    // element for each country.
    //
    // CloudFront and MaxMind both use ISO 3166 country codes. For the current list
    // of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on
    // the International Organization for Standardization website. You can also
    // refer to the country list in the CloudFront console, which includes both
    // country names and codes.
    Items []*string `locationNameList:"Location" type:"list"`

    // When geo restriction is enabled, this is the number of countries in your
    // whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0,
    // and you can omit Items.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`

    // The method that you want to use to restrict distribution of your content
    // by country:
    //
    //    * none: No geo restriction is enabled, meaning access to content is not
    //    restricted by client geo location.
    //
    //    * blacklist: The Location elements specify the countries in which you
    //    do not want CloudFront to distribute your content.
    //
    //    * whitelist: The Location elements specify the countries in which you
    //    want CloudFront to distribute your content.
    //
    // RestrictionType is a required field
    RestrictionType *string `type:"string" required:"true" enum:"GeoRestrictionType"`
    // contains filtered or unexported fields
}

func (GeoRestriction) GoString

func (s GeoRestriction) GoString() string

GoString returns the string representation

func (*GeoRestriction) SetItems

func (s *GeoRestriction) SetItems(v []*string) *GeoRestriction

SetItems sets the Items field's value.

func (*GeoRestriction) SetQuantity

func (s *GeoRestriction) SetQuantity(v int64) *GeoRestriction

SetQuantity sets the Quantity field's value.

func (*GeoRestriction) SetRestrictionType

func (s *GeoRestriction) SetRestrictionType(v string) *GeoRestriction

SetRestrictionType sets the RestrictionType field's value.

func (GeoRestriction) String

func (s GeoRestriction) String() string

String returns the string representation

func (*GeoRestriction) Validate

func (s *GeoRestriction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetCloudFrontOriginAccessIdentityConfigInput

The origin access identity's configuration information. For more information, see CloudFrontOriginAccessIdentityConfigComplexType. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentityConfigRequest

type GetCloudFrontOriginAccessIdentityConfigInput struct {

    // The identity's ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetCloudFrontOriginAccessIdentityConfigInput) GoString

func (s GetCloudFrontOriginAccessIdentityConfigInput) GoString() string

GoString returns the string representation

func (*GetCloudFrontOriginAccessIdentityConfigInput) SetId

func (s *GetCloudFrontOriginAccessIdentityConfigInput) SetId(v string) *GetCloudFrontOriginAccessIdentityConfigInput

SetId sets the Id field's value.

func (GetCloudFrontOriginAccessIdentityConfigInput) String

func (s GetCloudFrontOriginAccessIdentityConfigInput) String() string

String returns the string representation

func (*GetCloudFrontOriginAccessIdentityConfigInput) Validate

func (s *GetCloudFrontOriginAccessIdentityConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetCloudFrontOriginAccessIdentityConfigOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentityConfigResult

type GetCloudFrontOriginAccessIdentityConfigOutput struct {

    // The origin access identity's configuration information.
    CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `type:"structure"`

    // The current version of the configuration. For example: E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`
    // contains filtered or unexported fields
}

func (GetCloudFrontOriginAccessIdentityConfigOutput) GoString

func (s GetCloudFrontOriginAccessIdentityConfigOutput) GoString() string

GoString returns the string representation

func (*GetCloudFrontOriginAccessIdentityConfigOutput) SetCloudFrontOriginAccessIdentityConfig

func (s *GetCloudFrontOriginAccessIdentityConfigOutput) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *GetCloudFrontOriginAccessIdentityConfigOutput

SetCloudFrontOriginAccessIdentityConfig sets the CloudFrontOriginAccessIdentityConfig field's value.

func (*GetCloudFrontOriginAccessIdentityConfigOutput) SetETag

func (s *GetCloudFrontOriginAccessIdentityConfigOutput) SetETag(v string) *GetCloudFrontOriginAccessIdentityConfigOutput

SetETag sets the ETag field's value.

func (GetCloudFrontOriginAccessIdentityConfigOutput) String

func (s GetCloudFrontOriginAccessIdentityConfigOutput) String() string

String returns the string representation

type GetCloudFrontOriginAccessIdentityInput

The request to get an origin access identity's information. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentityRequest

type GetCloudFrontOriginAccessIdentityInput struct {

    // The identity's ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetCloudFrontOriginAccessIdentityInput) GoString

func (s GetCloudFrontOriginAccessIdentityInput) GoString() string

GoString returns the string representation

func (*GetCloudFrontOriginAccessIdentityInput) SetId

func (s *GetCloudFrontOriginAccessIdentityInput) SetId(v string) *GetCloudFrontOriginAccessIdentityInput

SetId sets the Id field's value.

func (GetCloudFrontOriginAccessIdentityInput) String

func (s GetCloudFrontOriginAccessIdentityInput) String() string

String returns the string representation

func (*GetCloudFrontOriginAccessIdentityInput) Validate

func (s *GetCloudFrontOriginAccessIdentityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetCloudFrontOriginAccessIdentityOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetCloudFrontOriginAccessIdentityResult

type GetCloudFrontOriginAccessIdentityOutput struct {

    // The origin access identity's information.
    CloudFrontOriginAccessIdentity *OriginAccessIdentity `type:"structure"`

    // The current version of the origin access identity's information. For example:
    // E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`
    // contains filtered or unexported fields
}

func (GetCloudFrontOriginAccessIdentityOutput) GoString

func (s GetCloudFrontOriginAccessIdentityOutput) GoString() string

GoString returns the string representation

func (*GetCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity

func (s *GetCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity(v *OriginAccessIdentity) *GetCloudFrontOriginAccessIdentityOutput

SetCloudFrontOriginAccessIdentity sets the CloudFrontOriginAccessIdentity field's value.

func (*GetCloudFrontOriginAccessIdentityOutput) SetETag

func (s *GetCloudFrontOriginAccessIdentityOutput) SetETag(v string) *GetCloudFrontOriginAccessIdentityOutput

SetETag sets the ETag field's value.

func (GetCloudFrontOriginAccessIdentityOutput) String

func (s GetCloudFrontOriginAccessIdentityOutput) String() string

String returns the string representation

type GetDistributionConfigInput

The request to get a distribution configuration. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistributionConfigRequest

type GetDistributionConfigInput struct {

    // The distribution's ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetDistributionConfigInput) GoString

func (s GetDistributionConfigInput) GoString() string

GoString returns the string representation

func (*GetDistributionConfigInput) SetId

func (s *GetDistributionConfigInput) SetId(v string) *GetDistributionConfigInput

SetId sets the Id field's value.

func (GetDistributionConfigInput) String

func (s GetDistributionConfigInput) String() string

String returns the string representation

func (*GetDistributionConfigInput) Validate

func (s *GetDistributionConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDistributionConfigOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistributionConfigResult

type GetDistributionConfigOutput struct {

    // The distribution's configuration information.
    DistributionConfig *DistributionConfig `type:"structure"`

    // The current version of the configuration. For example: E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`
    // contains filtered or unexported fields
}

func (GetDistributionConfigOutput) GoString

func (s GetDistributionConfigOutput) GoString() string

GoString returns the string representation

func (*GetDistributionConfigOutput) SetDistributionConfig

func (s *GetDistributionConfigOutput) SetDistributionConfig(v *DistributionConfig) *GetDistributionConfigOutput

SetDistributionConfig sets the DistributionConfig field's value.

func (*GetDistributionConfigOutput) SetETag

func (s *GetDistributionConfigOutput) SetETag(v string) *GetDistributionConfigOutput

SetETag sets the ETag field's value.

func (GetDistributionConfigOutput) String

func (s GetDistributionConfigOutput) String() string

String returns the string representation

type GetDistributionInput

The request to get a distribution's information. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistributionRequest

type GetDistributionInput struct {

    // The distribution's ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetDistributionInput) GoString

func (s GetDistributionInput) GoString() string

GoString returns the string representation

func (*GetDistributionInput) SetId

func (s *GetDistributionInput) SetId(v string) *GetDistributionInput

SetId sets the Id field's value.

func (GetDistributionInput) String

func (s GetDistributionInput) String() string

String returns the string representation

func (*GetDistributionInput) Validate

func (s *GetDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDistributionOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetDistributionResult

type GetDistributionOutput struct {

    // The distribution's information.
    Distribution *Distribution `type:"structure"`

    // The current version of the distribution's information. For example: E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`
    // contains filtered or unexported fields
}

func (GetDistributionOutput) GoString

func (s GetDistributionOutput) GoString() string

GoString returns the string representation

func (*GetDistributionOutput) SetDistribution

func (s *GetDistributionOutput) SetDistribution(v *Distribution) *GetDistributionOutput

SetDistribution sets the Distribution field's value.

func (*GetDistributionOutput) SetETag

func (s *GetDistributionOutput) SetETag(v string) *GetDistributionOutput

SetETag sets the ETag field's value.

func (GetDistributionOutput) String

func (s GetDistributionOutput) String() string

String returns the string representation

type GetInvalidationInput

The request to get an invalidation's information. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetInvalidationRequest

type GetInvalidationInput struct {

    // The distribution's ID.
    //
    // DistributionId is a required field
    DistributionId *string `location:"uri" locationName:"DistributionId" type:"string" required:"true"`

    // The identifier for the invalidation request, for example, IDFDVBD632BHDS5.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetInvalidationInput) GoString

func (s GetInvalidationInput) GoString() string

GoString returns the string representation

func (*GetInvalidationInput) SetDistributionId

func (s *GetInvalidationInput) SetDistributionId(v string) *GetInvalidationInput

SetDistributionId sets the DistributionId field's value.

func (*GetInvalidationInput) SetId

func (s *GetInvalidationInput) SetId(v string) *GetInvalidationInput

SetId sets the Id field's value.

func (GetInvalidationInput) String

func (s GetInvalidationInput) String() string

String returns the string representation

func (*GetInvalidationInput) Validate

func (s *GetInvalidationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetInvalidationOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetInvalidationResult

type GetInvalidationOutput struct {

    // The invalidation's information. For more information, see Invalidation Complex
    // Type (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/InvalidationDatatype.html).
    Invalidation *Invalidation `type:"structure"`
    // contains filtered or unexported fields
}

func (GetInvalidationOutput) GoString

func (s GetInvalidationOutput) GoString() string

GoString returns the string representation

func (*GetInvalidationOutput) SetInvalidation

func (s *GetInvalidationOutput) SetInvalidation(v *Invalidation) *GetInvalidationOutput

SetInvalidation sets the Invalidation field's value.

func (GetInvalidationOutput) String

func (s GetInvalidationOutput) String() string

String returns the string representation

type GetStreamingDistributionConfigInput

To request to get a streaming distribution configuration. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistributionConfigRequest

type GetStreamingDistributionConfigInput struct {

    // The streaming distribution's ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetStreamingDistributionConfigInput) GoString

func (s GetStreamingDistributionConfigInput) GoString() string

GoString returns the string representation

func (*GetStreamingDistributionConfigInput) SetId

func (s *GetStreamingDistributionConfigInput) SetId(v string) *GetStreamingDistributionConfigInput

SetId sets the Id field's value.

func (GetStreamingDistributionConfigInput) String

func (s GetStreamingDistributionConfigInput) String() string

String returns the string representation

func (*GetStreamingDistributionConfigInput) Validate

func (s *GetStreamingDistributionConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetStreamingDistributionConfigOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistributionConfigResult

type GetStreamingDistributionConfigOutput struct {

    // The current version of the configuration. For example: E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The streaming distribution's configuration information.
    StreamingDistributionConfig *StreamingDistributionConfig `type:"structure"`
    // contains filtered or unexported fields
}

func (GetStreamingDistributionConfigOutput) GoString

func (s GetStreamingDistributionConfigOutput) GoString() string

GoString returns the string representation

func (*GetStreamingDistributionConfigOutput) SetETag

func (s *GetStreamingDistributionConfigOutput) SetETag(v string) *GetStreamingDistributionConfigOutput

SetETag sets the ETag field's value.

func (*GetStreamingDistributionConfigOutput) SetStreamingDistributionConfig

func (s *GetStreamingDistributionConfigOutput) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *GetStreamingDistributionConfigOutput

SetStreamingDistributionConfig sets the StreamingDistributionConfig field's value.

func (GetStreamingDistributionConfigOutput) String

func (s GetStreamingDistributionConfigOutput) String() string

String returns the string representation

type GetStreamingDistributionInput

The request to get a streaming distribution's information. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistributionRequest

type GetStreamingDistributionInput struct {

    // The streaming distribution's ID.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetStreamingDistributionInput) GoString

func (s GetStreamingDistributionInput) GoString() string

GoString returns the string representation

func (*GetStreamingDistributionInput) SetId

func (s *GetStreamingDistributionInput) SetId(v string) *GetStreamingDistributionInput

SetId sets the Id field's value.

func (GetStreamingDistributionInput) String

func (s GetStreamingDistributionInput) String() string

String returns the string representation

func (*GetStreamingDistributionInput) Validate

func (s *GetStreamingDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetStreamingDistributionOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/GetStreamingDistributionResult

type GetStreamingDistributionOutput struct {

    // The current version of the streaming distribution's information. For example:
    // E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The streaming distribution's information.
    StreamingDistribution *StreamingDistribution `type:"structure"`
    // contains filtered or unexported fields
}

func (GetStreamingDistributionOutput) GoString

func (s GetStreamingDistributionOutput) GoString() string

GoString returns the string representation

func (*GetStreamingDistributionOutput) SetETag

func (s *GetStreamingDistributionOutput) SetETag(v string) *GetStreamingDistributionOutput

SetETag sets the ETag field's value.

func (*GetStreamingDistributionOutput) SetStreamingDistribution

func (s *GetStreamingDistributionOutput) SetStreamingDistribution(v *StreamingDistribution) *GetStreamingDistributionOutput

SetStreamingDistribution sets the StreamingDistribution field's value.

func (GetStreamingDistributionOutput) String

func (s GetStreamingDistributionOutput) String() string

String returns the string representation

type Headers

A complex type that specifies the headers that you want CloudFront to forward to the origin for this cache behavior.

For the headers that you specify, CloudFront also caches separate versions of a specified object based on the header values in viewer requests. For example, suppose viewer requests for logo.jpg contain a custom Product header that has a value of either Acme or Apex, and you configure CloudFront to cache your content based on values in the Product header. CloudFront forwards the Product header to the origin and caches the response from the origin once for each header value. For more information about caching based on header values, see How CloudFront Forwards and Caches Headers (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Headers

type Headers struct {

    // A complex type that contains one Name element for each header that you want
    // CloudFront to forward to the origin and to vary on for this cache behavior.
    // If Quantity is 0, omit Items.
    Items []*string `locationNameList:"Name" type:"list"`

    // The number of different headers that you want CloudFront to forward to the
    // origin for this cache behavior. You can configure each cache behavior in
    // a web distribution to do one of the following:
    //
    //    * Forward all headers to your origin: Specify 1 for Quantity and * for
    //    Name.
    //
    // If you configure CloudFront to forward all headers to your origin, CloudFront
    //    doesn't cache the objects associated with this cache behavior. Instead,
    //    it sends every request to the origin.
    //
    //    * Forward a whitelist of headers you specify: Specify the number of headers
    //    that you want to forward, and specify the header names in Name elements.
    //    CloudFront caches your objects based on the values in all of the specified
    //    headers. CloudFront also forwards the headers that it forwards by default,
    //    but it caches your objects based only on the headers that you specify.
    //
    //
    //    * Forward only the default headers: Specify 0 for Quantity and omit Items.
    //    In this configuration, CloudFront doesn't cache based on the values in
    //    the request headers.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (Headers) GoString

func (s Headers) GoString() string

GoString returns the string representation

func (*Headers) SetItems

func (s *Headers) SetItems(v []*string) *Headers

SetItems sets the Items field's value.

func (*Headers) SetQuantity

func (s *Headers) SetQuantity(v int64) *Headers

SetQuantity sets the Quantity field's value.

func (Headers) String

func (s Headers) String() string

String returns the string representation

func (*Headers) Validate

func (s *Headers) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Invalidation

An invalidation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Invalidation

type Invalidation struct {

    // The date and time the invalidation request was first made.
    //
    // CreateTime is a required field
    CreateTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // The identifier for the invalidation request. For example: IDFDVBD632BHDS5.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // The current invalidation information for the batch request.
    //
    // InvalidationBatch is a required field
    InvalidationBatch *InvalidationBatch `type:"structure" required:"true"`

    // The status of the invalidation request. When the invalidation batch is finished,
    // the status is Completed.
    //
    // Status is a required field
    Status *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (Invalidation) GoString

func (s Invalidation) GoString() string

GoString returns the string representation

func (*Invalidation) SetCreateTime

func (s *Invalidation) SetCreateTime(v time.Time) *Invalidation

SetCreateTime sets the CreateTime field's value.

func (*Invalidation) SetId

func (s *Invalidation) SetId(v string) *Invalidation

SetId sets the Id field's value.

func (*Invalidation) SetInvalidationBatch

func (s *Invalidation) SetInvalidationBatch(v *InvalidationBatch) *Invalidation

SetInvalidationBatch sets the InvalidationBatch field's value.

func (*Invalidation) SetStatus

func (s *Invalidation) SetStatus(v string) *Invalidation

SetStatus sets the Status field's value.

func (Invalidation) String

func (s Invalidation) String() string

String returns the string representation

type InvalidationBatch

An invalidation batch. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/InvalidationBatch

type InvalidationBatch struct {

    // A value that you specify to uniquely identify an invalidation request. CloudFront
    // uses the value to prevent you from accidentally resubmitting an identical
    // request. Whenever you create a new invalidation request, you must specify
    // a new value for CallerReference and change other values in the request as
    // applicable. One way to ensure that the value of CallerReference is unique
    // is to use a timestamp, for example, 20120301090000.
    //
    // If you make a second invalidation request with the same value for CallerReference,
    // and if the rest of the request is the same, CloudFront doesn't create a new
    // invalidation request. Instead, CloudFront returns information about the invalidation
    // request that you previously created with the same CallerReference.
    //
    // If CallerReference is a value you already sent in a previous invalidation
    // batch request but the content of any Path is different from the original
    // request, CloudFront returns an InvalidationBatchAlreadyExists error.
    //
    // CallerReference is a required field
    CallerReference *string `type:"string" required:"true"`

    // A complex type that contains information about the objects that you want
    // to invalidate. For more information, see Specifying the Objects to Invalidate
    // (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidation-specifying-objects)
    // in the Amazon CloudFront Developer Guide.
    //
    // Paths is a required field
    Paths *Paths `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (InvalidationBatch) GoString

func (s InvalidationBatch) GoString() string

GoString returns the string representation

func (*InvalidationBatch) SetCallerReference

func (s *InvalidationBatch) SetCallerReference(v string) *InvalidationBatch

SetCallerReference sets the CallerReference field's value.

func (*InvalidationBatch) SetPaths

func (s *InvalidationBatch) SetPaths(v *Paths) *InvalidationBatch

SetPaths sets the Paths field's value.

func (InvalidationBatch) String

func (s InvalidationBatch) String() string

String returns the string representation

func (*InvalidationBatch) Validate

func (s *InvalidationBatch) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InvalidationList

The InvalidationList complex type describes the list of invalidation objects. For more information about invalidation, see Invalidating Objects (Web Distributions Only) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/InvalidationList

type InvalidationList struct {

    // A flag that indicates whether more invalidation batch requests remain to
    // be listed. If your results were truncated, you can make a follow-up pagination
    // request using the Marker request parameter to retrieve more invalidation
    // batches in the list.
    //
    // IsTruncated is a required field
    IsTruncated *bool `type:"boolean" required:"true"`

    // A complex type that contains one InvalidationSummary element for each invalidation
    // batch created by the current AWS account.
    Items []*InvalidationSummary `locationNameList:"InvalidationSummary" type:"list"`

    // The value that you provided for the Marker request parameter.
    //
    // Marker is a required field
    Marker *string `type:"string" required:"true"`

    // The value that you provided for the MaxItems request parameter.
    //
    // MaxItems is a required field
    MaxItems *int64 `type:"integer" required:"true"`

    // If IsTruncated is true, this element is present and contains the value that
    // you can use for the Marker request parameter to continue listing your invalidation
    // batches where they left off.
    NextMarker *string `type:"string"`

    // The number of invalidation batches that were created by the current AWS account.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (InvalidationList) GoString

func (s InvalidationList) GoString() string

GoString returns the string representation

func (*InvalidationList) SetIsTruncated

func (s *InvalidationList) SetIsTruncated(v bool) *InvalidationList

SetIsTruncated sets the IsTruncated field's value.

func (*InvalidationList) SetItems

func (s *InvalidationList) SetItems(v []*InvalidationSummary) *InvalidationList

SetItems sets the Items field's value.

func (*InvalidationList) SetMarker

func (s *InvalidationList) SetMarker(v string) *InvalidationList

SetMarker sets the Marker field's value.

func (*InvalidationList) SetMaxItems

func (s *InvalidationList) SetMaxItems(v int64) *InvalidationList

SetMaxItems sets the MaxItems field's value.

func (*InvalidationList) SetNextMarker

func (s *InvalidationList) SetNextMarker(v string) *InvalidationList

SetNextMarker sets the NextMarker field's value.

func (*InvalidationList) SetQuantity

func (s *InvalidationList) SetQuantity(v int64) *InvalidationList

SetQuantity sets the Quantity field's value.

func (InvalidationList) String

func (s InvalidationList) String() string

String returns the string representation

type InvalidationSummary

A summary of an invalidation request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/InvalidationSummary

type InvalidationSummary struct {

    // CreateTime is a required field
    CreateTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // The unique ID for an invalidation request.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // The status of an invalidation request.
    //
    // Status is a required field
    Status *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (InvalidationSummary) GoString

func (s InvalidationSummary) GoString() string

GoString returns the string representation

func (*InvalidationSummary) SetCreateTime

func (s *InvalidationSummary) SetCreateTime(v time.Time) *InvalidationSummary

SetCreateTime sets the CreateTime field's value.

func (*InvalidationSummary) SetId

func (s *InvalidationSummary) SetId(v string) *InvalidationSummary

SetId sets the Id field's value.

func (*InvalidationSummary) SetStatus

func (s *InvalidationSummary) SetStatus(v string) *InvalidationSummary

SetStatus sets the Status field's value.

func (InvalidationSummary) String

func (s InvalidationSummary) String() string

String returns the string representation

type KeyPairIds

A complex type that lists the active CloudFront key pairs, if any, that are associated with AwsAccountNumber.

For more information, see ActiveTrustedSigners. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/KeyPairIds

type KeyPairIds struct {

    // A complex type that lists the active CloudFront key pairs, if any, that are
    // associated with AwsAccountNumber.
    //
    // For more information, see ActiveTrustedSigners.
    Items []*string `locationNameList:"KeyPairId" type:"list"`

    // The number of active CloudFront key pairs for AwsAccountNumber.
    //
    // For more information, see ActiveTrustedSigners.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (KeyPairIds) GoString

func (s KeyPairIds) GoString() string

GoString returns the string representation

func (*KeyPairIds) SetItems

func (s *KeyPairIds) SetItems(v []*string) *KeyPairIds

SetItems sets the Items field's value.

func (*KeyPairIds) SetQuantity

func (s *KeyPairIds) SetQuantity(v int64) *KeyPairIds

SetQuantity sets the Quantity field's value.

func (KeyPairIds) String

func (s KeyPairIds) String() string

String returns the string representation

type LambdaFunctionAssociation

A complex type that contains a Lambda function association. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/LambdaFunctionAssociation

type LambdaFunctionAssociation struct {

    // Specifies the event type that triggers a Lambda function invocation. Valid
    // values are:
    //
    //    * viewer-request
    //
    //    * origin-request
    //
    //    * viewer-response
    //
    //    * origin-response
    EventType *string `type:"string" enum:"EventType"`

    // The ARN of the Lambda function.
    LambdaFunctionARN *string `type:"string"`
    // contains filtered or unexported fields
}

func (LambdaFunctionAssociation) GoString

func (s LambdaFunctionAssociation) GoString() string

GoString returns the string representation

func (*LambdaFunctionAssociation) SetEventType

func (s *LambdaFunctionAssociation) SetEventType(v string) *LambdaFunctionAssociation

SetEventType sets the EventType field's value.

func (*LambdaFunctionAssociation) SetLambdaFunctionARN

func (s *LambdaFunctionAssociation) SetLambdaFunctionARN(v string) *LambdaFunctionAssociation

SetLambdaFunctionARN sets the LambdaFunctionARN field's value.

func (LambdaFunctionAssociation) String

func (s LambdaFunctionAssociation) String() string

String returns the string representation

type LambdaFunctionAssociations

A complex type that specifies a list of Lambda functions associations for a cache behavior.

If you want to invoke one or more Lambda functions triggered by requests that match the PathPattern of the cache behavior, specify the applicable values for Quantity and Items. Note that there can be up to 4 LambdaFunctionAssociation items in this list (one for each possible value of EventType) and each EventType can be associated with the Lambda function only once.

If you don't want to invoke any Lambda functions for the requests that match PathPattern, specify 0 for Quantity and omit Items. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/LambdaFunctionAssociations

type LambdaFunctionAssociations struct {

    // Optional: A complex type that contains LambdaFunctionAssociation items for
    // this cache behavior. If Quantity is 0, you can omit Items.
    Items []*LambdaFunctionAssociation `locationNameList:"LambdaFunctionAssociation" type:"list"`

    // The number of Lambda function associations for this cache behavior.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (LambdaFunctionAssociations) GoString

func (s LambdaFunctionAssociations) GoString() string

GoString returns the string representation

func (*LambdaFunctionAssociations) SetItems

func (s *LambdaFunctionAssociations) SetItems(v []*LambdaFunctionAssociation) *LambdaFunctionAssociations

SetItems sets the Items field's value.

func (*LambdaFunctionAssociations) SetQuantity

func (s *LambdaFunctionAssociations) SetQuantity(v int64) *LambdaFunctionAssociations

SetQuantity sets the Quantity field's value.

func (LambdaFunctionAssociations) String

func (s LambdaFunctionAssociations) String() string

String returns the string representation

func (*LambdaFunctionAssociations) Validate

func (s *LambdaFunctionAssociations) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListCloudFrontOriginAccessIdentitiesInput

The request to list origin access identities. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListCloudFrontOriginAccessIdentitiesRequest

type ListCloudFrontOriginAccessIdentitiesInput struct {

    // Use this when paginating results to indicate where to begin in your list
    // of origin access identities. The results include identities in the list that
    // occur after the marker. To get the next page of results, set the Marker to
    // the value of the NextMarker from the current page's response (which is also
    // the ID of the last identity on that page).
    Marker *string `location:"querystring" locationName:"Marker" type:"string"`

    // The maximum number of origin access identities you want in the response body.
    MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"`
    // contains filtered or unexported fields
}

func (ListCloudFrontOriginAccessIdentitiesInput) GoString

func (s ListCloudFrontOriginAccessIdentitiesInput) GoString() string

GoString returns the string representation

func (*ListCloudFrontOriginAccessIdentitiesInput) SetMarker

func (s *ListCloudFrontOriginAccessIdentitiesInput) SetMarker(v string) *ListCloudFrontOriginAccessIdentitiesInput

SetMarker sets the Marker field's value.

func (*ListCloudFrontOriginAccessIdentitiesInput) SetMaxItems

func (s *ListCloudFrontOriginAccessIdentitiesInput) SetMaxItems(v int64) *ListCloudFrontOriginAccessIdentitiesInput

SetMaxItems sets the MaxItems field's value.

func (ListCloudFrontOriginAccessIdentitiesInput) String

func (s ListCloudFrontOriginAccessIdentitiesInput) String() string

String returns the string representation

type ListCloudFrontOriginAccessIdentitiesOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListCloudFrontOriginAccessIdentitiesResult

type ListCloudFrontOriginAccessIdentitiesOutput struct {

    // The CloudFrontOriginAccessIdentityList type.
    CloudFrontOriginAccessIdentityList *OriginAccessIdentityList `type:"structure"`
    // contains filtered or unexported fields
}

func (ListCloudFrontOriginAccessIdentitiesOutput) GoString

func (s ListCloudFrontOriginAccessIdentitiesOutput) GoString() string

GoString returns the string representation

func (*ListCloudFrontOriginAccessIdentitiesOutput) SetCloudFrontOriginAccessIdentityList

func (s *ListCloudFrontOriginAccessIdentitiesOutput) SetCloudFrontOriginAccessIdentityList(v *OriginAccessIdentityList) *ListCloudFrontOriginAccessIdentitiesOutput

SetCloudFrontOriginAccessIdentityList sets the CloudFrontOriginAccessIdentityList field's value.

func (ListCloudFrontOriginAccessIdentitiesOutput) String

func (s ListCloudFrontOriginAccessIdentitiesOutput) String() string

String returns the string representation

type ListDistributionsByWebACLIdInput

The request to list distributions that are associated with a specified AWS WAF web ACL. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributionsByWebACLIdRequest

type ListDistributionsByWebACLIdInput struct {

    // Use Marker and MaxItems to control pagination of results. If you have more
    // than MaxItems distributions that satisfy the request, the response includes
    // a NextMarker element. To get the next page of results, submit another request.
    // For the value of Marker, specify the value of NextMarker from the last response.
    // (For the first request, omit Marker.)
    Marker *string `location:"querystring" locationName:"Marker" type:"string"`

    // The maximum number of distributions that you want CloudFront to return in
    // the response body. The maximum and default values are both 100.
    MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"`

    // The ID of the AWS WAF web ACL that you want to list the associated distributions.
    // If you specify "null" for the ID, the request returns a list of the distributions
    // that aren't associated with a web ACL.
    //
    // WebACLId is a required field
    WebACLId *string `location:"uri" locationName:"WebACLId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListDistributionsByWebACLIdInput) GoString

func (s ListDistributionsByWebACLIdInput) GoString() string

GoString returns the string representation

func (*ListDistributionsByWebACLIdInput) SetMarker

func (s *ListDistributionsByWebACLIdInput) SetMarker(v string) *ListDistributionsByWebACLIdInput

SetMarker sets the Marker field's value.

func (*ListDistributionsByWebACLIdInput) SetMaxItems

func (s *ListDistributionsByWebACLIdInput) SetMaxItems(v int64) *ListDistributionsByWebACLIdInput

SetMaxItems sets the MaxItems field's value.

func (*ListDistributionsByWebACLIdInput) SetWebACLId

func (s *ListDistributionsByWebACLIdInput) SetWebACLId(v string) *ListDistributionsByWebACLIdInput

SetWebACLId sets the WebACLId field's value.

func (ListDistributionsByWebACLIdInput) String

func (s ListDistributionsByWebACLIdInput) String() string

String returns the string representation

func (*ListDistributionsByWebACLIdInput) Validate

func (s *ListDistributionsByWebACLIdInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListDistributionsByWebACLIdOutput

The response to a request to list the distributions that are associated with a specified AWS WAF web ACL. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributionsByWebACLIdResult

type ListDistributionsByWebACLIdOutput struct {

    // The DistributionList type.
    DistributionList *DistributionList `type:"structure"`
    // contains filtered or unexported fields
}

func (ListDistributionsByWebACLIdOutput) GoString

func (s ListDistributionsByWebACLIdOutput) GoString() string

GoString returns the string representation

func (*ListDistributionsByWebACLIdOutput) SetDistributionList

func (s *ListDistributionsByWebACLIdOutput) SetDistributionList(v *DistributionList) *ListDistributionsByWebACLIdOutput

SetDistributionList sets the DistributionList field's value.

func (ListDistributionsByWebACLIdOutput) String

func (s ListDistributionsByWebACLIdOutput) String() string

String returns the string representation

type ListDistributionsInput

The request to list your distributions. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributionsRequest

type ListDistributionsInput struct {

    // Use this when paginating results to indicate where to begin in your list
    // of distributions. The results include distributions in the list that occur
    // after the marker. To get the next page of results, set the Marker to the
    // value of the NextMarker from the current page's response (which is also the
    // ID of the last distribution on that page).
    Marker *string `location:"querystring" locationName:"Marker" type:"string"`

    // The maximum number of distributions you want in the response body.
    MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"`
    // contains filtered or unexported fields
}

func (ListDistributionsInput) GoString

func (s ListDistributionsInput) GoString() string

GoString returns the string representation

func (*ListDistributionsInput) SetMarker

func (s *ListDistributionsInput) SetMarker(v string) *ListDistributionsInput

SetMarker sets the Marker field's value.

func (*ListDistributionsInput) SetMaxItems

func (s *ListDistributionsInput) SetMaxItems(v int64) *ListDistributionsInput

SetMaxItems sets the MaxItems field's value.

func (ListDistributionsInput) String

func (s ListDistributionsInput) String() string

String returns the string representation

type ListDistributionsOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListDistributionsResult

type ListDistributionsOutput struct {

    // The DistributionList type.
    DistributionList *DistributionList `type:"structure"`
    // contains filtered or unexported fields
}

func (ListDistributionsOutput) GoString

func (s ListDistributionsOutput) GoString() string

GoString returns the string representation

func (*ListDistributionsOutput) SetDistributionList

func (s *ListDistributionsOutput) SetDistributionList(v *DistributionList) *ListDistributionsOutput

SetDistributionList sets the DistributionList field's value.

func (ListDistributionsOutput) String

func (s ListDistributionsOutput) String() string

String returns the string representation

type ListInvalidationsInput

The request to list invalidations. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListInvalidationsRequest

type ListInvalidationsInput struct {

    // The distribution's ID.
    //
    // DistributionId is a required field
    DistributionId *string `location:"uri" locationName:"DistributionId" type:"string" required:"true"`

    // Use this parameter when paginating results to indicate where to begin in
    // your list of invalidation batches. Because the results are returned in decreasing
    // order from most recent to oldest, the most recent results are on the first
    // page, the second page will contain earlier results, and so on. To get the
    // next page of results, set Marker to the value of the NextMarker from the
    // current page's response. This value is the same as the ID of the last invalidation
    // batch on that page.
    Marker *string `location:"querystring" locationName:"Marker" type:"string"`

    // The maximum number of invalidation batches that you want in the response
    // body.
    MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"`
    // contains filtered or unexported fields
}

func (ListInvalidationsInput) GoString

func (s ListInvalidationsInput) GoString() string

GoString returns the string representation

func (*ListInvalidationsInput) SetDistributionId

func (s *ListInvalidationsInput) SetDistributionId(v string) *ListInvalidationsInput

SetDistributionId sets the DistributionId field's value.

func (*ListInvalidationsInput) SetMarker

func (s *ListInvalidationsInput) SetMarker(v string) *ListInvalidationsInput

SetMarker sets the Marker field's value.

func (*ListInvalidationsInput) SetMaxItems

func (s *ListInvalidationsInput) SetMaxItems(v int64) *ListInvalidationsInput

SetMaxItems sets the MaxItems field's value.

func (ListInvalidationsInput) String

func (s ListInvalidationsInput) String() string

String returns the string representation

func (*ListInvalidationsInput) Validate

func (s *ListInvalidationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListInvalidationsOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListInvalidationsResult

type ListInvalidationsOutput struct {

    // Information about invalidation batches.
    InvalidationList *InvalidationList `type:"structure"`
    // contains filtered or unexported fields
}

func (ListInvalidationsOutput) GoString

func (s ListInvalidationsOutput) GoString() string

GoString returns the string representation

func (*ListInvalidationsOutput) SetInvalidationList

func (s *ListInvalidationsOutput) SetInvalidationList(v *InvalidationList) *ListInvalidationsOutput

SetInvalidationList sets the InvalidationList field's value.

func (ListInvalidationsOutput) String

func (s ListInvalidationsOutput) String() string

String returns the string representation

type ListStreamingDistributionsInput

The request to list your streaming distributions. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListStreamingDistributionsRequest

type ListStreamingDistributionsInput struct {

    // The value that you provided for the Marker request parameter.
    Marker *string `location:"querystring" locationName:"Marker" type:"string"`

    // The value that you provided for the MaxItems request parameter.
    MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"`
    // contains filtered or unexported fields
}

func (ListStreamingDistributionsInput) GoString

func (s ListStreamingDistributionsInput) GoString() string

GoString returns the string representation

func (*ListStreamingDistributionsInput) SetMarker

func (s *ListStreamingDistributionsInput) SetMarker(v string) *ListStreamingDistributionsInput

SetMarker sets the Marker field's value.

func (*ListStreamingDistributionsInput) SetMaxItems

func (s *ListStreamingDistributionsInput) SetMaxItems(v int64) *ListStreamingDistributionsInput

SetMaxItems sets the MaxItems field's value.

func (ListStreamingDistributionsInput) String

func (s ListStreamingDistributionsInput) String() string

String returns the string representation

type ListStreamingDistributionsOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListStreamingDistributionsResult

type ListStreamingDistributionsOutput struct {

    // The StreamingDistributionList type.
    StreamingDistributionList *StreamingDistributionList `type:"structure"`
    // contains filtered or unexported fields
}

func (ListStreamingDistributionsOutput) GoString

func (s ListStreamingDistributionsOutput) GoString() string

GoString returns the string representation

func (*ListStreamingDistributionsOutput) SetStreamingDistributionList

func (s *ListStreamingDistributionsOutput) SetStreamingDistributionList(v *StreamingDistributionList) *ListStreamingDistributionsOutput

SetStreamingDistributionList sets the StreamingDistributionList field's value.

func (ListStreamingDistributionsOutput) String

func (s ListStreamingDistributionsOutput) String() string

String returns the string representation

type ListTagsForResourceInput

The request to list tags for a CloudFront resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListTagsForResourceRequest

type ListTagsForResourceInput struct {

    // An ARN of a CloudFront resource.
    //
    // Resource is a required field
    Resource *string `location:"querystring" locationName:"Resource" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceInput) GoString

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceInput) SetResource

func (s *ListTagsForResourceInput) SetResource(v string) *ListTagsForResourceInput

SetResource sets the Resource field's value.

func (ListTagsForResourceInput) String

func (s ListTagsForResourceInput) String() string

String returns the string representation

func (*ListTagsForResourceInput) Validate

func (s *ListTagsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsForResourceOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ListTagsForResourceResult

type ListTagsForResourceOutput struct {

    // A complex type that contains zero or more Tag elements.
    //
    // Tags is a required field
    Tags *Tags `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceOutput) GoString

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceOutput) SetTags

func (s *ListTagsForResourceOutput) SetTags(v *Tags) *ListTagsForResourceOutput

SetTags sets the Tags field's value.

func (ListTagsForResourceOutput) String

func (s ListTagsForResourceOutput) String() string

String returns the string representation

type LoggingConfig

A complex type that controls whether access logs are written for the distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/LoggingConfig

type LoggingConfig struct {

    // The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.
    //
    // Bucket is a required field
    Bucket *string `type:"string" required:"true"`

    // Specifies whether you want CloudFront to save access logs to an Amazon S3
    // bucket. If you do not want to enable logging when you create a distribution
    // or if you want to disable logging for an existing distribution, specify false
    // for Enabled, and specify empty Bucket and Prefix elements. If you specify
    // false for Enabled but you specify values for Bucket, prefix, and IncludeCookies,
    // the values are automatically deleted.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // Specifies whether you want CloudFront to include cookies in access logs,
    // specify true for IncludeCookies. If you choose to include cookies in logs,
    // CloudFront logs all cookies regardless of how you configure the cache behaviors
    // for this distribution. If you do not want to include cookies when you create
    // a distribution or if you want to disable include cookies for an existing
    // distribution, specify false for IncludeCookies.
    //
    // IncludeCookies is a required field
    IncludeCookies *bool `type:"boolean" required:"true"`

    // An optional string that you want CloudFront to prefix to the access log filenames
    // for this distribution, for example, myprefix/. If you want to enable logging,
    // but you do not want to specify a prefix, you still must include an empty
    // Prefix element in the Logging element.
    //
    // Prefix is a required field
    Prefix *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (LoggingConfig) GoString

func (s LoggingConfig) GoString() string

GoString returns the string representation

func (*LoggingConfig) SetBucket

func (s *LoggingConfig) SetBucket(v string) *LoggingConfig

SetBucket sets the Bucket field's value.

func (*LoggingConfig) SetEnabled

func (s *LoggingConfig) SetEnabled(v bool) *LoggingConfig

SetEnabled sets the Enabled field's value.

func (*LoggingConfig) SetIncludeCookies

func (s *LoggingConfig) SetIncludeCookies(v bool) *LoggingConfig

SetIncludeCookies sets the IncludeCookies field's value.

func (*LoggingConfig) SetPrefix

func (s *LoggingConfig) SetPrefix(v string) *LoggingConfig

SetPrefix sets the Prefix field's value.

func (LoggingConfig) String

func (s LoggingConfig) String() string

String returns the string representation

func (*LoggingConfig) Validate

func (s *LoggingConfig) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Origin

A complex type that describes the Amazon S3 bucket or the HTTP server (for example, a web server) from which CloudFront gets your files. You must create at least one origin.

For the current limit on the number of origins that you can create for a distribution, see Amazon CloudFront Limits (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_cloudfront) in the AWS General Reference. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Origin

type Origin struct {

    // A complex type that contains names and values for the custom headers that
    // you want.
    CustomHeaders *CustomHeaders `type:"structure"`

    // A complex type that contains information about a custom origin. If the origin
    // is an Amazon S3 bucket, use the S3OriginConfig element instead.
    CustomOriginConfig *CustomOriginConfig `type:"structure"`

    // Amazon S3 origins: The DNS name of the Amazon S3 bucket from which you want
    // CloudFront to get objects for this origin, for example, myawsbucket.s3.amazonaws.com.
    //
    // Constraints for Amazon S3 origins:
    //
    //    * If you configured Amazon S3 Transfer Acceleration for your bucket, do
    //    not specify the s3-accelerate endpoint for DomainName.
    //
    //    * The bucket name must be between 3 and 63 characters long (inclusive).
    //
    //    * The bucket name must contain only lowercase characters, numbers, periods,
    //    underscores, and dashes.
    //
    //    * The bucket name must not contain adjacent periods.
    //
    // Custom Origins: The DNS domain name for the HTTP server from which you want
    // CloudFront to get objects for this origin, for example, www.example.com.
    //
    // Constraints for custom origins:
    //
    //    * DomainName must be a valid DNS name that contains only a-z, A-Z, 0-9,
    //    dot (.), hyphen (-), or underscore (_) characters.
    //
    //    * The name cannot exceed 128 characters.
    //
    // DomainName is a required field
    DomainName *string `type:"string" required:"true"`

    // A unique identifier for the origin. The value of Id must be unique within
    // the distribution.
    //
    // When you specify the value of TargetOriginId for the default cache behavior
    // or for another cache behavior, you indicate the origin to which you want
    // the cache behavior to route requests by specifying the value of the Id element
    // for that origin. When a request matches the path pattern for that cache behavior,
    // CloudFront routes the request to the specified origin. For more information,
    // see Cache Behavior Settings (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior)
    // in the Amazon CloudFront Developer Guide.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // An optional element that causes CloudFront to request your content from a
    // directory in your Amazon S3 bucket or your custom origin. When you include
    // the OriginPath element, specify the directory name, beginning with a /. CloudFront
    // appends the directory name to the value of DomainName, for example, example.com/production.
    // Do not include a / at the end of the directory name.
    //
    // For example, suppose you've specified the following values for your distribution:
    //
    //    * DomainName: An Amazon S3 bucket named myawsbucket.
    //
    //    * OriginPath: /production
    //
    //    * CNAME: example.com
    //
    // When a user enters example.com/index.html in a browser, CloudFront sends
    // a request to Amazon S3 for myawsbucket/production/index.html.
    //
    // When a user enters example.com/acme/index.html in a browser, CloudFront sends
    // a request to Amazon S3 for myawsbucket/production/acme/index.html.
    OriginPath *string `type:"string"`

    // A complex type that contains information about the Amazon S3 origin. If the
    // origin is a custom origin, use the CustomOriginConfig element instead.
    S3OriginConfig *S3OriginConfig `type:"structure"`
    // contains filtered or unexported fields
}

func (Origin) GoString

func (s Origin) GoString() string

GoString returns the string representation

func (*Origin) SetCustomHeaders

func (s *Origin) SetCustomHeaders(v *CustomHeaders) *Origin

SetCustomHeaders sets the CustomHeaders field's value.

func (*Origin) SetCustomOriginConfig

func (s *Origin) SetCustomOriginConfig(v *CustomOriginConfig) *Origin

SetCustomOriginConfig sets the CustomOriginConfig field's value.

func (*Origin) SetDomainName

func (s *Origin) SetDomainName(v string) *Origin

SetDomainName sets the DomainName field's value.

func (*Origin) SetId

func (s *Origin) SetId(v string) *Origin

SetId sets the Id field's value.

func (*Origin) SetOriginPath

func (s *Origin) SetOriginPath(v string) *Origin

SetOriginPath sets the OriginPath field's value.

func (*Origin) SetS3OriginConfig

func (s *Origin) SetS3OriginConfig(v *S3OriginConfig) *Origin

SetS3OriginConfig sets the S3OriginConfig field's value.

func (Origin) String

func (s Origin) String() string

String returns the string representation

func (*Origin) Validate

func (s *Origin) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OriginAccessIdentity

CloudFront origin access identity. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CloudFrontOriginAccessIdentity

type OriginAccessIdentity struct {

    // The current configuration information for the identity.
    CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `type:"structure"`

    // The ID for the origin access identity. For example: E74FTE3AJFJ256A.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // The Amazon S3 canonical user ID for the origin access identity, used when
    // giving the origin access identity read permission to an object in Amazon
    // S3.
    //
    // S3CanonicalUserId is a required field
    S3CanonicalUserId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (OriginAccessIdentity) GoString

func (s OriginAccessIdentity) GoString() string

GoString returns the string representation

func (*OriginAccessIdentity) SetCloudFrontOriginAccessIdentityConfig

func (s *OriginAccessIdentity) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *OriginAccessIdentity

SetCloudFrontOriginAccessIdentityConfig sets the CloudFrontOriginAccessIdentityConfig field's value.

func (*OriginAccessIdentity) SetId

func (s *OriginAccessIdentity) SetId(v string) *OriginAccessIdentity

SetId sets the Id field's value.

func (*OriginAccessIdentity) SetS3CanonicalUserId

func (s *OriginAccessIdentity) SetS3CanonicalUserId(v string) *OriginAccessIdentity

SetS3CanonicalUserId sets the S3CanonicalUserId field's value.

func (OriginAccessIdentity) String

func (s OriginAccessIdentity) String() string

String returns the string representation

type OriginAccessIdentityConfig

Origin access identity configuration. Send a GET request to the /CloudFront API version/CloudFront/identity ID/config resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CloudFrontOriginAccessIdentityConfig

type OriginAccessIdentityConfig struct {

    // A unique number that ensures the request can't be replayed.
    //
    // If the CallerReference is new (no matter the content of the CloudFrontOriginAccessIdentityConfig
    // object), a new origin access identity is created.
    //
    // If the CallerReference is a value already sent in a previous identity request,
    // and the content of the CloudFrontOriginAccessIdentityConfig is identical
    // to the original request (ignoring white space), the response includes the
    // same information returned to the original request.
    //
    // If the CallerReference is a value you already sent in a previous request
    // to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig
    // is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists
    // error.
    //
    // CallerReference is a required field
    CallerReference *string `type:"string" required:"true"`

    // Any comments you want to include about the origin access identity.
    //
    // Comment is a required field
    Comment *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (OriginAccessIdentityConfig) GoString

func (s OriginAccessIdentityConfig) GoString() string

GoString returns the string representation

func (*OriginAccessIdentityConfig) SetCallerReference

func (s *OriginAccessIdentityConfig) SetCallerReference(v string) *OriginAccessIdentityConfig

SetCallerReference sets the CallerReference field's value.

func (*OriginAccessIdentityConfig) SetComment

func (s *OriginAccessIdentityConfig) SetComment(v string) *OriginAccessIdentityConfig

SetComment sets the Comment field's value.

func (OriginAccessIdentityConfig) String

func (s OriginAccessIdentityConfig) String() string

String returns the string representation

func (*OriginAccessIdentityConfig) Validate

func (s *OriginAccessIdentityConfig) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OriginAccessIdentityList

Lists the origin access identities for CloudFront.Send a GET request to the /CloudFront API version/origin-access-identity/cloudfront resource. The response includes a CloudFrontOriginAccessIdentityList element with zero or more CloudFrontOriginAccessIdentitySummary child elements. By default, your entire list of origin access identities is returned in one single page. If the list is long, you can paginate it using the MaxItems and Marker parameters. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CloudFrontOriginAccessIdentityList

type OriginAccessIdentityList struct {

    // A flag that indicates whether more origin access identities remain to be
    // listed. If your results were truncated, you can make a follow-up pagination
    // request using the Marker request parameter to retrieve more items in the
    // list.
    //
    // IsTruncated is a required field
    IsTruncated *bool `type:"boolean" required:"true"`

    // A complex type that contains one CloudFrontOriginAccessIdentitySummary element
    // for each origin access identity that was created by the current AWS account.
    Items []*OriginAccessIdentitySummary `locationNameList:"CloudFrontOriginAccessIdentitySummary" type:"list"`

    // Use this when paginating results to indicate where to begin in your list
    // of origin access identities. The results include identities in the list that
    // occur after the marker. To get the next page of results, set the Marker to
    // the value of the NextMarker from the current page's response (which is also
    // the ID of the last identity on that page).
    //
    // Marker is a required field
    Marker *string `type:"string" required:"true"`

    // The maximum number of origin access identities you want in the response body.
    //
    // MaxItems is a required field
    MaxItems *int64 `type:"integer" required:"true"`

    // If IsTruncated is true, this element is present and contains the value you
    // can use for the Marker request parameter to continue listing your origin
    // access identities where they left off.
    NextMarker *string `type:"string"`

    // The number of CloudFront origin access identities that were created by the
    // current AWS account.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (OriginAccessIdentityList) GoString

func (s OriginAccessIdentityList) GoString() string

GoString returns the string representation

func (*OriginAccessIdentityList) SetIsTruncated

func (s *OriginAccessIdentityList) SetIsTruncated(v bool) *OriginAccessIdentityList

SetIsTruncated sets the IsTruncated field's value.

func (*OriginAccessIdentityList) SetItems

func (s *OriginAccessIdentityList) SetItems(v []*OriginAccessIdentitySummary) *OriginAccessIdentityList

SetItems sets the Items field's value.

func (*OriginAccessIdentityList) SetMarker

func (s *OriginAccessIdentityList) SetMarker(v string) *OriginAccessIdentityList

SetMarker sets the Marker field's value.

func (*OriginAccessIdentityList) SetMaxItems

func (s *OriginAccessIdentityList) SetMaxItems(v int64) *OriginAccessIdentityList

SetMaxItems sets the MaxItems field's value.

func (*OriginAccessIdentityList) SetNextMarker

func (s *OriginAccessIdentityList) SetNextMarker(v string) *OriginAccessIdentityList

SetNextMarker sets the NextMarker field's value.

func (*OriginAccessIdentityList) SetQuantity

func (s *OriginAccessIdentityList) SetQuantity(v int64) *OriginAccessIdentityList

SetQuantity sets the Quantity field's value.

func (OriginAccessIdentityList) String

func (s OriginAccessIdentityList) String() string

String returns the string representation

type OriginAccessIdentitySummary

Summary of the information about a CloudFront origin access identity. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/CloudFrontOriginAccessIdentitySummary

type OriginAccessIdentitySummary struct {

    // The comment for this origin access identity, as originally specified when
    // created.
    //
    // Comment is a required field
    Comment *string `type:"string" required:"true"`

    // The ID for the origin access identity. For example: E74FTE3AJFJ256A.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // The Amazon S3 canonical user ID for the origin access identity, which you
    // use when giving the origin access identity read permission to an object in
    // Amazon S3.
    //
    // S3CanonicalUserId is a required field
    S3CanonicalUserId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (OriginAccessIdentitySummary) GoString

func (s OriginAccessIdentitySummary) GoString() string

GoString returns the string representation

func (*OriginAccessIdentitySummary) SetComment

func (s *OriginAccessIdentitySummary) SetComment(v string) *OriginAccessIdentitySummary

SetComment sets the Comment field's value.

func (*OriginAccessIdentitySummary) SetId

func (s *OriginAccessIdentitySummary) SetId(v string) *OriginAccessIdentitySummary

SetId sets the Id field's value.

func (*OriginAccessIdentitySummary) SetS3CanonicalUserId

func (s *OriginAccessIdentitySummary) SetS3CanonicalUserId(v string) *OriginAccessIdentitySummary

SetS3CanonicalUserId sets the S3CanonicalUserId field's value.

func (OriginAccessIdentitySummary) String

func (s OriginAccessIdentitySummary) String() string

String returns the string representation

type OriginCustomHeader

A complex type that contains HeaderName and HeaderValue elements, if any, for this distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/OriginCustomHeader

type OriginCustomHeader struct {

    // The name of a header that you want CloudFront to forward to your origin.
    // For more information, see Forwarding Custom Headers to Your Origin (Web Distributions
    // Only) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/forward-custom-headers.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    //
    // HeaderName is a required field
    HeaderName *string `type:"string" required:"true"`

    // The value for the header that you specified in the HeaderName field.
    //
    // HeaderValue is a required field
    HeaderValue *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (OriginCustomHeader) GoString

func (s OriginCustomHeader) GoString() string

GoString returns the string representation

func (*OriginCustomHeader) SetHeaderName

func (s *OriginCustomHeader) SetHeaderName(v string) *OriginCustomHeader

SetHeaderName sets the HeaderName field's value.

func (*OriginCustomHeader) SetHeaderValue

func (s *OriginCustomHeader) SetHeaderValue(v string) *OriginCustomHeader

SetHeaderValue sets the HeaderValue field's value.

func (OriginCustomHeader) String

func (s OriginCustomHeader) String() string

String returns the string representation

func (*OriginCustomHeader) Validate

func (s *OriginCustomHeader) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OriginSslProtocols

A complex type that contains information about the SSL/TLS protocols that CloudFront can use when establishing an HTTPS connection with your origin. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/OriginSslProtocols

type OriginSslProtocols struct {

    // A list that contains allowed SSL/TLS protocols for this distribution.
    //
    // Items is a required field
    Items []*string `locationNameList:"SslProtocol" type:"list" required:"true"`

    // The number of SSL/TLS protocols that you want to allow CloudFront to use
    // when establishing an HTTPS connection with this origin.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (OriginSslProtocols) GoString

func (s OriginSslProtocols) GoString() string

GoString returns the string representation

func (*OriginSslProtocols) SetItems

func (s *OriginSslProtocols) SetItems(v []*string) *OriginSslProtocols

SetItems sets the Items field's value.

func (*OriginSslProtocols) SetQuantity

func (s *OriginSslProtocols) SetQuantity(v int64) *OriginSslProtocols

SetQuantity sets the Quantity field's value.

func (OriginSslProtocols) String

func (s OriginSslProtocols) String() string

String returns the string representation

func (*OriginSslProtocols) Validate

func (s *OriginSslProtocols) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Origins

A complex type that contains information about origins for this distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Origins

type Origins struct {

    // A complex type that contains origins for this distribution.
    Items []*Origin `locationNameList:"Origin" min:"1" type:"list"`

    // The number of origins for this distribution.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (Origins) GoString

func (s Origins) GoString() string

GoString returns the string representation

func (*Origins) SetItems

func (s *Origins) SetItems(v []*Origin) *Origins

SetItems sets the Items field's value.

func (*Origins) SetQuantity

func (s *Origins) SetQuantity(v int64) *Origins

SetQuantity sets the Quantity field's value.

func (Origins) String

func (s Origins) String() string

String returns the string representation

func (*Origins) Validate

func (s *Origins) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Paths

A complex type that contains information about the objects that you want to invalidate. For more information, see Specifying the Objects to Invalidate (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidation-specifying-objects) in the Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Paths

type Paths struct {

    // A complex type that contains a list of the paths that you want to invalidate.
    Items []*string `locationNameList:"Path" type:"list"`

    // The number of objects that you want to invalidate.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (Paths) GoString

func (s Paths) GoString() string

GoString returns the string representation

func (*Paths) SetItems

func (s *Paths) SetItems(v []*string) *Paths

SetItems sets the Items field's value.

func (*Paths) SetQuantity

func (s *Paths) SetQuantity(v int64) *Paths

SetQuantity sets the Quantity field's value.

func (Paths) String

func (s Paths) String() string

String returns the string representation

func (*Paths) Validate

func (s *Paths) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type QueryStringCacheKeys

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/QueryStringCacheKeys

type QueryStringCacheKeys struct {

    // (Optional) A list that contains the query string parameters that you want
    // CloudFront to use as a basis for caching for this cache behavior. If Quantity
    // is 0, you can omit Items.
    Items []*string `locationNameList:"Name" type:"list"`

    // The number of whitelisted query string parameters for this cache behavior.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (QueryStringCacheKeys) GoString

func (s QueryStringCacheKeys) GoString() string

GoString returns the string representation

func (*QueryStringCacheKeys) SetItems

func (s *QueryStringCacheKeys) SetItems(v []*string) *QueryStringCacheKeys

SetItems sets the Items field's value.

func (*QueryStringCacheKeys) SetQuantity

func (s *QueryStringCacheKeys) SetQuantity(v int64) *QueryStringCacheKeys

SetQuantity sets the Quantity field's value.

func (QueryStringCacheKeys) String

func (s QueryStringCacheKeys) String() string

String returns the string representation

func (*QueryStringCacheKeys) Validate

func (s *QueryStringCacheKeys) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Restrictions

A complex type that identifies ways in which you want to restrict distribution of your content. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Restrictions

type Restrictions struct {

    // A complex type that controls the countries in which your content is distributed.
    // CloudFront determines the location of your users using MaxMind GeoIP databases.
    //
    // GeoRestriction is a required field
    GeoRestriction *GeoRestriction `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (Restrictions) GoString

func (s Restrictions) GoString() string

GoString returns the string representation

func (*Restrictions) SetGeoRestriction

func (s *Restrictions) SetGeoRestriction(v *GeoRestriction) *Restrictions

SetGeoRestriction sets the GeoRestriction field's value.

func (Restrictions) String

func (s Restrictions) String() string

String returns the string representation

func (*Restrictions) Validate

func (s *Restrictions) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type S3Origin

A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/S3Origin

type S3Origin struct {

    // The DNS name of the Amazon S3 origin.
    //
    // DomainName is a required field
    DomainName *string `type:"string" required:"true"`

    // The CloudFront origin access identity to associate with the RTMP distribution.
    // Use an origin access identity to configure the distribution so that end users
    // can only access objects in an Amazon S3 bucket through CloudFront.
    //
    // If you want end users to be able to access objects using either the CloudFront
    // URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.
    //
    // To delete the origin access identity from an existing distribution, update
    // the distribution configuration and include an empty OriginAccessIdentity
    // element.
    //
    // To replace the origin access identity, update the distribution configuration
    // and specify the new origin access identity.
    //
    // For more information, see Using an Origin Access Identity to Restrict Access
    // to Your Amazon S3 Content (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html)
    // in the Amazon Amazon CloudFront Developer Guide.
    //
    // OriginAccessIdentity is a required field
    OriginAccessIdentity *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (S3Origin) GoString

func (s S3Origin) GoString() string

GoString returns the string representation

func (*S3Origin) SetDomainName

func (s *S3Origin) SetDomainName(v string) *S3Origin

SetDomainName sets the DomainName field's value.

func (*S3Origin) SetOriginAccessIdentity

func (s *S3Origin) SetOriginAccessIdentity(v string) *S3Origin

SetOriginAccessIdentity sets the OriginAccessIdentity field's value.

func (S3Origin) String

func (s S3Origin) String() string

String returns the string representation

func (*S3Origin) Validate

func (s *S3Origin) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type S3OriginConfig

A complex type that contains information about the Amazon S3 origin. If the origin is a custom origin, use the CustomOriginConfig element instead. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/S3OriginConfig

type S3OriginConfig struct {

    // The CloudFront origin access identity to associate with the origin. Use an
    // origin access identity to configure the origin so that viewers can only access
    // objects in an Amazon S3 bucket through CloudFront. The format of the value
    // is:
    //
    // origin-access-identity/cloudfront/ID-of-origin-access-identity
    //
    // where ID-of-origin-access-identity is the value that CloudFront returned
    // in the ID element when you created the origin access identity.
    //
    // If you want viewers to be able to access objects using either the CloudFront
    // URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.
    //
    // To delete the origin access identity from an existing distribution, update
    // the distribution configuration and include an empty OriginAccessIdentity
    // element.
    //
    // To replace the origin access identity, update the distribution configuration
    // and specify the new origin access identity.
    //
    // For more information about the origin access identity, see Serving Private
    // Content through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // OriginAccessIdentity is a required field
    OriginAccessIdentity *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (S3OriginConfig) GoString

func (s S3OriginConfig) GoString() string

GoString returns the string representation

func (*S3OriginConfig) SetOriginAccessIdentity

func (s *S3OriginConfig) SetOriginAccessIdentity(v string) *S3OriginConfig

SetOriginAccessIdentity sets the OriginAccessIdentity field's value.

func (S3OriginConfig) String

func (s S3OriginConfig) String() string

String returns the string representation

func (*S3OriginConfig) Validate

func (s *S3OriginConfig) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Signer

A complex type that lists the AWS accounts that were included in the TrustedSigners complex type, as well as their active CloudFront key pair IDs, if any. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Signer

type Signer struct {

    // An AWS account that is included in the TrustedSigners complex type for this
    // RTMP distribution. Valid values include:
    //
    //    * self, which is the AWS account used to create the distribution.
    //
    //    * An AWS account number.
    AwsAccountNumber *string `type:"string"`

    // A complex type that lists the active CloudFront key pairs, if any, that are
    // associated with AwsAccountNumber.
    KeyPairIds *KeyPairIds `type:"structure"`
    // contains filtered or unexported fields
}

func (Signer) GoString

func (s Signer) GoString() string

GoString returns the string representation

func (*Signer) SetAwsAccountNumber

func (s *Signer) SetAwsAccountNumber(v string) *Signer

SetAwsAccountNumber sets the AwsAccountNumber field's value.

func (*Signer) SetKeyPairIds

func (s *Signer) SetKeyPairIds(v *KeyPairIds) *Signer

SetKeyPairIds sets the KeyPairIds field's value.

func (Signer) String

func (s Signer) String() string

String returns the string representation

type StreamingDistribution

A streaming distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/StreamingDistribution

type StreamingDistribution struct {

    // ARN is a required field
    ARN *string `type:"string" required:"true"`

    // A complex type that lists the AWS accounts, if any, that you included in
    // the TrustedSigners complex type for this distribution. These are the accounts
    // that you want to allow to create signed URLs for private content.
    //
    // The Signer complex type lists the AWS account number of the trusted signer
    // or self if the signer is the AWS account that created the distribution. The
    // Signer element also includes the IDs of any active CloudFront key pairs that
    // are associated with the trusted signer's AWS account. If no KeyPairId element
    // appears for a Signer, that signer can't create signed URLs.
    //
    // For more information, see Serving Private Content through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // ActiveTrustedSigners is a required field
    ActiveTrustedSigners *ActiveTrustedSigners `type:"structure" required:"true"`

    // The domain name that corresponds to the streaming distribution. For example:
    // s5c39gqb8ow64r.cloudfront.net.
    //
    // DomainName is a required field
    DomainName *string `type:"string" required:"true"`

    // The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // The date and time that the distribution was last modified.
    LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // The current status of the RTMP distribution. When the status is Deployed,
    // the distribution's information is propagated to all CloudFront edge locations.
    //
    // Status is a required field
    Status *string `type:"string" required:"true"`

    // The current configuration information for the RTMP distribution.
    //
    // StreamingDistributionConfig is a required field
    StreamingDistributionConfig *StreamingDistributionConfig `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (StreamingDistribution) GoString

func (s StreamingDistribution) GoString() string

GoString returns the string representation

func (*StreamingDistribution) SetARN

func (s *StreamingDistribution) SetARN(v string) *StreamingDistribution

SetARN sets the ARN field's value.

func (*StreamingDistribution) SetActiveTrustedSigners

func (s *StreamingDistribution) SetActiveTrustedSigners(v *ActiveTrustedSigners) *StreamingDistribution

SetActiveTrustedSigners sets the ActiveTrustedSigners field's value.

func (*StreamingDistribution) SetDomainName

func (s *StreamingDistribution) SetDomainName(v string) *StreamingDistribution

SetDomainName sets the DomainName field's value.

func (*StreamingDistribution) SetId

func (s *StreamingDistribution) SetId(v string) *StreamingDistribution

SetId sets the Id field's value.

func (*StreamingDistribution) SetLastModifiedTime

func (s *StreamingDistribution) SetLastModifiedTime(v time.Time) *StreamingDistribution

SetLastModifiedTime sets the LastModifiedTime field's value.

func (*StreamingDistribution) SetStatus

func (s *StreamingDistribution) SetStatus(v string) *StreamingDistribution

SetStatus sets the Status field's value.

func (*StreamingDistribution) SetStreamingDistributionConfig

func (s *StreamingDistribution) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *StreamingDistribution

SetStreamingDistributionConfig sets the StreamingDistributionConfig field's value.

func (StreamingDistribution) String

func (s StreamingDistribution) String() string

String returns the string representation

type StreamingDistributionConfig

The RTMP distribution's configuration information. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/StreamingDistributionConfig

type StreamingDistributionConfig struct {

    // A complex type that contains information about CNAMEs (alternate domain names),
    // if any, for this streaming distribution.
    Aliases *Aliases `type:"structure"`

    // A unique number that ensures that the request can't be replayed. If the CallerReference
    // is new (no matter the content of the StreamingDistributionConfig object),
    // a new streaming distribution is created. If the CallerReference is a value
    // that you already sent in a previous request to create a streaming distribution,
    // and the content of the StreamingDistributionConfig is identical to the original
    // request (ignoring white space), the response includes the same information
    // returned to the original request. If the CallerReference is a value that
    // you already sent in a previous request to create a streaming distribution
    // but the content of the StreamingDistributionConfig is different from the
    // original request, CloudFront returns a DistributionAlreadyExists error.
    //
    // CallerReference is a required field
    CallerReference *string `type:"string" required:"true"`

    // Any comments you want to include about the streaming distribution.
    //
    // Comment is a required field
    Comment *string `type:"string" required:"true"`

    // Whether the streaming distribution is enabled to accept user requests for
    // content.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // A complex type that controls whether access logs are written for the streaming
    // distribution.
    Logging *StreamingLoggingConfig `type:"structure"`

    // A complex type that contains information about price class for this streaming
    // distribution.
    PriceClass *string `type:"string" enum:"PriceClass"`

    // A complex type that contains information about the Amazon S3 bucket from
    // which you want CloudFront to get your media files for distribution.
    //
    // S3Origin is a required field
    S3Origin *S3Origin `type:"structure" required:"true"`

    // A complex type that specifies any AWS accounts that you want to permit to
    // create signed URLs for private content. If you want the distribution to use
    // signed URLs, include this element; if you want the distribution to use public
    // URLs, remove this element. For more information, see Serving Private Content
    // through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
    // in the Amazon CloudFront Developer Guide.
    //
    // TrustedSigners is a required field
    TrustedSigners *TrustedSigners `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (StreamingDistributionConfig) GoString

func (s StreamingDistributionConfig) GoString() string

GoString returns the string representation

func (*StreamingDistributionConfig) SetAliases

func (s *StreamingDistributionConfig) SetAliases(v *Aliases) *StreamingDistributionConfig

SetAliases sets the Aliases field's value.

func (*StreamingDistributionConfig) SetCallerReference

func (s *StreamingDistributionConfig) SetCallerReference(v string) *StreamingDistributionConfig

SetCallerReference sets the CallerReference field's value.

func (*StreamingDistributionConfig) SetComment

func (s *StreamingDistributionConfig) SetComment(v string) *StreamingDistributionConfig

SetComment sets the Comment field's value.

func (*StreamingDistributionConfig) SetEnabled

func (s *StreamingDistributionConfig) SetEnabled(v bool) *StreamingDistributionConfig

SetEnabled sets the Enabled field's value.

func (*StreamingDistributionConfig) SetLogging

func (s *StreamingDistributionConfig) SetLogging(v *StreamingLoggingConfig) *StreamingDistributionConfig

SetLogging sets the Logging field's value.

func (*StreamingDistributionConfig) SetPriceClass

func (s *StreamingDistributionConfig) SetPriceClass(v string) *StreamingDistributionConfig

SetPriceClass sets the PriceClass field's value.

func (*StreamingDistributionConfig) SetS3Origin

func (s *StreamingDistributionConfig) SetS3Origin(v *S3Origin) *StreamingDistributionConfig

SetS3Origin sets the S3Origin field's value.

func (*StreamingDistributionConfig) SetTrustedSigners

func (s *StreamingDistributionConfig) SetTrustedSigners(v *TrustedSigners) *StreamingDistributionConfig

SetTrustedSigners sets the TrustedSigners field's value.

func (StreamingDistributionConfig) String

func (s StreamingDistributionConfig) String() string

String returns the string representation

func (*StreamingDistributionConfig) Validate

func (s *StreamingDistributionConfig) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StreamingDistributionConfigWithTags

A streaming distribution Configuration and a list of tags to be associated with the streaming distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/StreamingDistributionConfigWithTags

type StreamingDistributionConfigWithTags struct {

    // A streaming distribution Configuration.
    //
    // StreamingDistributionConfig is a required field
    StreamingDistributionConfig *StreamingDistributionConfig `type:"structure" required:"true"`

    // A complex type that contains zero or more Tag elements.
    //
    // Tags is a required field
    Tags *Tags `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (StreamingDistributionConfigWithTags) GoString

func (s StreamingDistributionConfigWithTags) GoString() string

GoString returns the string representation

func (*StreamingDistributionConfigWithTags) SetStreamingDistributionConfig

func (s *StreamingDistributionConfigWithTags) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *StreamingDistributionConfigWithTags

SetStreamingDistributionConfig sets the StreamingDistributionConfig field's value.

func (*StreamingDistributionConfigWithTags) SetTags

func (s *StreamingDistributionConfigWithTags) SetTags(v *Tags) *StreamingDistributionConfigWithTags

SetTags sets the Tags field's value.

func (StreamingDistributionConfigWithTags) String

func (s StreamingDistributionConfigWithTags) String() string

String returns the string representation

func (*StreamingDistributionConfigWithTags) Validate

func (s *StreamingDistributionConfigWithTags) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StreamingDistributionList

A streaming distribution list. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/StreamingDistributionList

type StreamingDistributionList struct {

    // A flag that indicates whether more streaming distributions remain to be listed.
    // If your results were truncated, you can make a follow-up pagination request
    // using the Marker request parameter to retrieve more distributions in the
    // list.
    //
    // IsTruncated is a required field
    IsTruncated *bool `type:"boolean" required:"true"`

    // A complex type that contains one StreamingDistributionSummary element for
    // each distribution that was created by the current AWS account.
    Items []*StreamingDistributionSummary `locationNameList:"StreamingDistributionSummary" type:"list"`

    // The value you provided for the Marker request parameter.
    //
    // Marker is a required field
    Marker *string `type:"string" required:"true"`

    // The value you provided for the MaxItems request parameter.
    //
    // MaxItems is a required field
    MaxItems *int64 `type:"integer" required:"true"`

    // If IsTruncated is true, this element is present and contains the value you
    // can use for the Marker request parameter to continue listing your RTMP distributions
    // where they left off.
    NextMarker *string `type:"string"`

    // The number of streaming distributions that were created by the current AWS
    // account.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (StreamingDistributionList) GoString

func (s StreamingDistributionList) GoString() string

GoString returns the string representation

func (*StreamingDistributionList) SetIsTruncated

func (s *StreamingDistributionList) SetIsTruncated(v bool) *StreamingDistributionList

SetIsTruncated sets the IsTruncated field's value.

func (*StreamingDistributionList) SetItems

func (s *StreamingDistributionList) SetItems(v []*StreamingDistributionSummary) *StreamingDistributionList

SetItems sets the Items field's value.

func (*StreamingDistributionList) SetMarker

func (s *StreamingDistributionList) SetMarker(v string) *StreamingDistributionList

SetMarker sets the Marker field's value.

func (*StreamingDistributionList) SetMaxItems

func (s *StreamingDistributionList) SetMaxItems(v int64) *StreamingDistributionList

SetMaxItems sets the MaxItems field's value.

func (*StreamingDistributionList) SetNextMarker

func (s *StreamingDistributionList) SetNextMarker(v string) *StreamingDistributionList

SetNextMarker sets the NextMarker field's value.

func (*StreamingDistributionList) SetQuantity

func (s *StreamingDistributionList) SetQuantity(v int64) *StreamingDistributionList

SetQuantity sets the Quantity field's value.

func (StreamingDistributionList) String

func (s StreamingDistributionList) String() string

String returns the string representation

type StreamingDistributionSummary

A summary of the information for an Amazon CloudFront streaming distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/StreamingDistributionSummary

type StreamingDistributionSummary struct {

    // The ARN (Amazon Resource Name) for the streaming distribution. For example:
    // arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5,
    // where 123456789012 is your AWS account ID.
    //
    // ARN is a required field
    ARN *string `type:"string" required:"true"`

    // A complex type that contains information about CNAMEs (alternate domain names),
    // if any, for this streaming distribution.
    //
    // Aliases is a required field
    Aliases *Aliases `type:"structure" required:"true"`

    // The comment originally specified when this distribution was created.
    //
    // Comment is a required field
    Comment *string `type:"string" required:"true"`

    // The domain name corresponding to the distribution. For example: d604721fxaaqy9.cloudfront.net.
    //
    // DomainName is a required field
    DomainName *string `type:"string" required:"true"`

    // Whether the distribution is enabled to accept end user requests for content.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // The identifier for the distribution. For example: EDFDVBD632BHDS5.
    //
    // Id is a required field
    Id *string `type:"string" required:"true"`

    // The date and time the distribution was last modified.
    //
    // LastModifiedTime is a required field
    LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // PriceClass is a required field
    PriceClass *string `type:"string" required:"true" enum:"PriceClass"`

    // A complex type that contains information about the Amazon S3 bucket from
    // which you want CloudFront to get your media files for distribution.
    //
    // S3Origin is a required field
    S3Origin *S3Origin `type:"structure" required:"true"`

    // Indicates the current status of the distribution. When the status is Deployed,
    // the distribution's information is fully propagated throughout the Amazon
    // CloudFront system.
    //
    // Status is a required field
    Status *string `type:"string" required:"true"`

    // A complex type that specifies the AWS accounts, if any, that you want to
    // allow to create signed URLs for private content. If you want to require signed
    // URLs in requests for objects in the target origin that match the PathPattern
    // for this cache behavior, specify true for Enabled, and specify the applicable
    // values for Quantity and Items.If you don't want to require signed URLs in
    // requests for objects that match PathPattern, specify false for Enabled and
    // 0 for Quantity. Omit Items. To add, change, or remove one or more trusted
    // signers, change Enabled to true (if it's currently false), change Quantity
    // as applicable, and specify all of the trusted signers that you want to include
    // in the updated distribution.
    //
    // TrustedSigners is a required field
    TrustedSigners *TrustedSigners `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (StreamingDistributionSummary) GoString

func (s StreamingDistributionSummary) GoString() string

GoString returns the string representation

func (*StreamingDistributionSummary) SetARN

func (s *StreamingDistributionSummary) SetARN(v string) *StreamingDistributionSummary

SetARN sets the ARN field's value.

func (*StreamingDistributionSummary) SetAliases

func (s *StreamingDistributionSummary) SetAliases(v *Aliases) *StreamingDistributionSummary

SetAliases sets the Aliases field's value.

func (*StreamingDistributionSummary) SetComment

func (s *StreamingDistributionSummary) SetComment(v string) *StreamingDistributionSummary

SetComment sets the Comment field's value.

func (*StreamingDistributionSummary) SetDomainName

func (s *StreamingDistributionSummary) SetDomainName(v string) *StreamingDistributionSummary

SetDomainName sets the DomainName field's value.

func (*StreamingDistributionSummary) SetEnabled

func (s *StreamingDistributionSummary) SetEnabled(v bool) *StreamingDistributionSummary

SetEnabled sets the Enabled field's value.

func (*StreamingDistributionSummary) SetId

func (s *StreamingDistributionSummary) SetId(v string) *StreamingDistributionSummary

SetId sets the Id field's value.

func (*StreamingDistributionSummary) SetLastModifiedTime

func (s *StreamingDistributionSummary) SetLastModifiedTime(v time.Time) *StreamingDistributionSummary

SetLastModifiedTime sets the LastModifiedTime field's value.

func (*StreamingDistributionSummary) SetPriceClass

func (s *StreamingDistributionSummary) SetPriceClass(v string) *StreamingDistributionSummary

SetPriceClass sets the PriceClass field's value.

func (*StreamingDistributionSummary) SetS3Origin

func (s *StreamingDistributionSummary) SetS3Origin(v *S3Origin) *StreamingDistributionSummary

SetS3Origin sets the S3Origin field's value.

func (*StreamingDistributionSummary) SetStatus

func (s *StreamingDistributionSummary) SetStatus(v string) *StreamingDistributionSummary

SetStatus sets the Status field's value.

func (*StreamingDistributionSummary) SetTrustedSigners

func (s *StreamingDistributionSummary) SetTrustedSigners(v *TrustedSigners) *StreamingDistributionSummary

SetTrustedSigners sets the TrustedSigners field's value.

func (StreamingDistributionSummary) String

func (s StreamingDistributionSummary) String() string

String returns the string representation

type StreamingLoggingConfig

A complex type that controls whether access logs are written for this streaming distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/StreamingLoggingConfig

type StreamingLoggingConfig struct {

    // The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.
    //
    // Bucket is a required field
    Bucket *string `type:"string" required:"true"`

    // Specifies whether you want CloudFront to save access logs to an Amazon S3
    // bucket. If you do not want to enable logging when you create a streaming
    // distribution or if you want to disable logging for an existing streaming
    // distribution, specify false for Enabled, and specify empty Bucket and Prefix
    // elements. If you specify false for Enabled but you specify values for Bucket
    // and Prefix, the values are automatically deleted.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // An optional string that you want CloudFront to prefix to the access log filenames
    // for this streaming distribution, for example, myprefix/. If you want to enable
    // logging, but you do not want to specify a prefix, you still must include
    // an empty Prefix element in the Logging element.
    //
    // Prefix is a required field
    Prefix *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StreamingLoggingConfig) GoString

func (s StreamingLoggingConfig) GoString() string

GoString returns the string representation

func (*StreamingLoggingConfig) SetBucket

func (s *StreamingLoggingConfig) SetBucket(v string) *StreamingLoggingConfig

SetBucket sets the Bucket field's value.

func (*StreamingLoggingConfig) SetEnabled

func (s *StreamingLoggingConfig) SetEnabled(v bool) *StreamingLoggingConfig

SetEnabled sets the Enabled field's value.

func (*StreamingLoggingConfig) SetPrefix

func (s *StreamingLoggingConfig) SetPrefix(v string) *StreamingLoggingConfig

SetPrefix sets the Prefix field's value.

func (StreamingLoggingConfig) String

func (s StreamingLoggingConfig) String() string

String returns the string representation

func (*StreamingLoggingConfig) Validate

func (s *StreamingLoggingConfig) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Tag

A complex type that contains Tag key and Tag value. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Tag

type Tag struct {

    // A string that contains Tag key.
    //
    // The string length should be between 1 and 128 characters. Valid characters
    // include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.
    //
    // Key is a required field
    Key *string `min:"1" type:"string" required:"true"`

    // A string that contains an optional Tag value.
    //
    // The string length should be between 0 and 256 characters. Valid characters
    // include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation

func (*Tag) SetKey

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String

func (s Tag) String() string

String returns the string representation

func (*Tag) Validate

func (s *Tag) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagKeys

A complex type that contains zero or more Tag elements. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/TagKeys

type TagKeys struct {

    // A complex type that contains Tag key elements.
    Items []*string `locationNameList:"Key" type:"list"`
    // contains filtered or unexported fields
}

func (TagKeys) GoString

func (s TagKeys) GoString() string

GoString returns the string representation

func (*TagKeys) SetItems

func (s *TagKeys) SetItems(v []*string) *TagKeys

SetItems sets the Items field's value.

func (TagKeys) String

func (s TagKeys) String() string

String returns the string representation

type TagResourceInput

The request to add tags to a CloudFront resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/TagResourceRequest

type TagResourceInput struct {

    // An ARN of a CloudFront resource.
    //
    // Resource is a required field
    Resource *string `location:"querystring" locationName:"Resource" type:"string" required:"true"`

    // A complex type that contains zero or more Tag elements.
    //
    // Tags is a required field
    Tags *Tags `locationName:"Tags" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (TagResourceInput) GoString

func (s TagResourceInput) GoString() string

GoString returns the string representation

func (*TagResourceInput) SetResource

func (s *TagResourceInput) SetResource(v string) *TagResourceInput

SetResource sets the Resource field's value.

func (*TagResourceInput) SetTags

func (s *TagResourceInput) SetTags(v *Tags) *TagResourceInput

SetTags sets the Tags field's value.

func (TagResourceInput) String

func (s TagResourceInput) String() string

String returns the string representation

func (*TagResourceInput) Validate

func (s *TagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagResourceOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/TagResourceOutput

type TagResourceOutput struct {
    // contains filtered or unexported fields
}

func (TagResourceOutput) GoString

func (s TagResourceOutput) GoString() string

GoString returns the string representation

func (TagResourceOutput) String

func (s TagResourceOutput) String() string

String returns the string representation

type Tags

A complex type that contains zero or more Tag elements. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/Tags

type Tags struct {

    // A complex type that contains Tag elements.
    Items []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (Tags) GoString

func (s Tags) GoString() string

GoString returns the string representation

func (*Tags) SetItems

func (s *Tags) SetItems(v []*Tag) *Tags

SetItems sets the Items field's value.

func (Tags) String

func (s Tags) String() string

String returns the string representation

func (*Tags) Validate

func (s *Tags) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TrustedSigners

A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content.

If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items. For more information, see Serving Private Content through CloudFront (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) in the Amazon Amazon CloudFront Developer Guide.

If you don't want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items.

To add, change, or remove one or more trusted signers, change Enabled to true (if it's currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.

For more information about updating the distribution configuration, see DistributionConfig . Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/TrustedSigners

type TrustedSigners struct {

    // Specifies whether you want to require viewers to use signed URLs to access
    // the files specified by PathPattern and TargetOriginId.
    //
    // Enabled is a required field
    Enabled *bool `type:"boolean" required:"true"`

    // Optional: A complex type that contains trusted signers for this cache behavior.
    // If Quantity is 0, you can omit Items.
    Items []*string `locationNameList:"AwsAccountNumber" type:"list"`

    // The number of trusted signers for this cache behavior.
    //
    // Quantity is a required field
    Quantity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (TrustedSigners) GoString

func (s TrustedSigners) GoString() string

GoString returns the string representation

func (*TrustedSigners) SetEnabled

func (s *TrustedSigners) SetEnabled(v bool) *TrustedSigners

SetEnabled sets the Enabled field's value.

func (*TrustedSigners) SetItems

func (s *TrustedSigners) SetItems(v []*string) *TrustedSigners

SetItems sets the Items field's value.

func (*TrustedSigners) SetQuantity

func (s *TrustedSigners) SetQuantity(v int64) *TrustedSigners

SetQuantity sets the Quantity field's value.

func (TrustedSigners) String

func (s TrustedSigners) String() string

String returns the string representation

func (*TrustedSigners) Validate

func (s *TrustedSigners) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UntagResourceInput

The request to remove tags from a CloudFront resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UntagResourceRequest

type UntagResourceInput struct {

    // An ARN of a CloudFront resource.
    //
    // Resource is a required field
    Resource *string `location:"querystring" locationName:"Resource" type:"string" required:"true"`

    // A complex type that contains zero or more Tag key elements.
    //
    // TagKeys is a required field
    TagKeys *TagKeys `locationName:"TagKeys" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (UntagResourceInput) GoString

func (s UntagResourceInput) GoString() string

GoString returns the string representation

func (*UntagResourceInput) SetResource

func (s *UntagResourceInput) SetResource(v string) *UntagResourceInput

SetResource sets the Resource field's value.

func (*UntagResourceInput) SetTagKeys

func (s *UntagResourceInput) SetTagKeys(v *TagKeys) *UntagResourceInput

SetTagKeys sets the TagKeys field's value.

func (UntagResourceInput) String

func (s UntagResourceInput) String() string

String returns the string representation

func (*UntagResourceInput) Validate

func (s *UntagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UntagResourceOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UntagResourceOutput

type UntagResourceOutput struct {
    // contains filtered or unexported fields
}

func (UntagResourceOutput) GoString

func (s UntagResourceOutput) GoString() string

GoString returns the string representation

func (UntagResourceOutput) String

func (s UntagResourceOutput) String() string

String returns the string representation

type UpdateCloudFrontOriginAccessIdentityInput

The request to update an origin access identity. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateCloudFrontOriginAccessIdentityRequest

type UpdateCloudFrontOriginAccessIdentityInput struct {

    // The identity's configuration information.
    //
    // CloudFrontOriginAccessIdentityConfig is a required field
    CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `locationName:"CloudFrontOriginAccessIdentityConfig" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`

    // The identity's id.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`

    // The value of the ETag header that you received when retrieving the identity's
    // configuration. For example: E2QWRUHAPOMQZL.
    IfMatch *string `location:"header" locationName:"If-Match" type:"string"`
    // contains filtered or unexported fields
}

func (UpdateCloudFrontOriginAccessIdentityInput) GoString

func (s UpdateCloudFrontOriginAccessIdentityInput) GoString() string

GoString returns the string representation

func (*UpdateCloudFrontOriginAccessIdentityInput) SetCloudFrontOriginAccessIdentityConfig

func (s *UpdateCloudFrontOriginAccessIdentityInput) SetCloudFrontOriginAccessIdentityConfig(v *OriginAccessIdentityConfig) *UpdateCloudFrontOriginAccessIdentityInput

SetCloudFrontOriginAccessIdentityConfig sets the CloudFrontOriginAccessIdentityConfig field's value.

func (*UpdateCloudFrontOriginAccessIdentityInput) SetId

func (s *UpdateCloudFrontOriginAccessIdentityInput) SetId(v string) *UpdateCloudFrontOriginAccessIdentityInput

SetId sets the Id field's value.

func (*UpdateCloudFrontOriginAccessIdentityInput) SetIfMatch

func (s *UpdateCloudFrontOriginAccessIdentityInput) SetIfMatch(v string) *UpdateCloudFrontOriginAccessIdentityInput

SetIfMatch sets the IfMatch field's value.

func (UpdateCloudFrontOriginAccessIdentityInput) String

func (s UpdateCloudFrontOriginAccessIdentityInput) String() string

String returns the string representation

func (*UpdateCloudFrontOriginAccessIdentityInput) Validate

func (s *UpdateCloudFrontOriginAccessIdentityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateCloudFrontOriginAccessIdentityOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateCloudFrontOriginAccessIdentityResult

type UpdateCloudFrontOriginAccessIdentityOutput struct {

    // The origin access identity's information.
    CloudFrontOriginAccessIdentity *OriginAccessIdentity `type:"structure"`

    // The current version of the configuration. For example: E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`
    // contains filtered or unexported fields
}

func (UpdateCloudFrontOriginAccessIdentityOutput) GoString

func (s UpdateCloudFrontOriginAccessIdentityOutput) GoString() string

GoString returns the string representation

func (*UpdateCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity

func (s *UpdateCloudFrontOriginAccessIdentityOutput) SetCloudFrontOriginAccessIdentity(v *OriginAccessIdentity) *UpdateCloudFrontOriginAccessIdentityOutput

SetCloudFrontOriginAccessIdentity sets the CloudFrontOriginAccessIdentity field's value.

func (*UpdateCloudFrontOriginAccessIdentityOutput) SetETag

func (s *UpdateCloudFrontOriginAccessIdentityOutput) SetETag(v string) *UpdateCloudFrontOriginAccessIdentityOutput

SetETag sets the ETag field's value.

func (UpdateCloudFrontOriginAccessIdentityOutput) String

func (s UpdateCloudFrontOriginAccessIdentityOutput) String() string

String returns the string representation

type UpdateDistributionInput

The request to update a distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateDistributionRequest

type UpdateDistributionInput struct {

    // The distribution's configuration information.
    //
    // DistributionConfig is a required field
    DistributionConfig *DistributionConfig `locationName:"DistributionConfig" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`

    // The distribution's id.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`

    // The value of the ETag header that you received when retrieving the distribution's
    // configuration. For example: E2QWRUHAPOMQZL.
    IfMatch *string `location:"header" locationName:"If-Match" type:"string"`
    // contains filtered or unexported fields
}

func (UpdateDistributionInput) GoString

func (s UpdateDistributionInput) GoString() string

GoString returns the string representation

func (*UpdateDistributionInput) SetDistributionConfig

func (s *UpdateDistributionInput) SetDistributionConfig(v *DistributionConfig) *UpdateDistributionInput

SetDistributionConfig sets the DistributionConfig field's value.

func (*UpdateDistributionInput) SetId

func (s *UpdateDistributionInput) SetId(v string) *UpdateDistributionInput

SetId sets the Id field's value.

func (*UpdateDistributionInput) SetIfMatch

func (s *UpdateDistributionInput) SetIfMatch(v string) *UpdateDistributionInput

SetIfMatch sets the IfMatch field's value.

func (UpdateDistributionInput) String

func (s UpdateDistributionInput) String() string

String returns the string representation

func (*UpdateDistributionInput) Validate

func (s *UpdateDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateDistributionOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateDistributionResult

type UpdateDistributionOutput struct {

    // The distribution's information.
    Distribution *Distribution `type:"structure"`

    // The current version of the configuration. For example: E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`
    // contains filtered or unexported fields
}

func (UpdateDistributionOutput) GoString

func (s UpdateDistributionOutput) GoString() string

GoString returns the string representation

func (*UpdateDistributionOutput) SetDistribution

func (s *UpdateDistributionOutput) SetDistribution(v *Distribution) *UpdateDistributionOutput

SetDistribution sets the Distribution field's value.

func (*UpdateDistributionOutput) SetETag

func (s *UpdateDistributionOutput) SetETag(v string) *UpdateDistributionOutput

SetETag sets the ETag field's value.

func (UpdateDistributionOutput) String

func (s UpdateDistributionOutput) String() string

String returns the string representation

type UpdateStreamingDistributionInput

The request to update a streaming distribution. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateStreamingDistributionRequest

type UpdateStreamingDistributionInput struct {

    // The streaming distribution's id.
    //
    // Id is a required field
    Id *string `location:"uri" locationName:"Id" type:"string" required:"true"`

    // The value of the ETag header that you received when retrieving the streaming
    // distribution's configuration. For example: E2QWRUHAPOMQZL.
    IfMatch *string `location:"header" locationName:"If-Match" type:"string"`

    // The streaming distribution's configuration information.
    //
    // StreamingDistributionConfig is a required field
    StreamingDistributionConfig *StreamingDistributionConfig `locationName:"StreamingDistributionConfig" type:"structure" required:"true" xmlURI:"http://cloudfront.amazonaws.com/doc/2017-03-25/"`
    // contains filtered or unexported fields
}

func (UpdateStreamingDistributionInput) GoString

func (s UpdateStreamingDistributionInput) GoString() string

GoString returns the string representation

func (*UpdateStreamingDistributionInput) SetId

func (s *UpdateStreamingDistributionInput) SetId(v string) *UpdateStreamingDistributionInput

SetId sets the Id field's value.

func (*UpdateStreamingDistributionInput) SetIfMatch

func (s *UpdateStreamingDistributionInput) SetIfMatch(v string) *UpdateStreamingDistributionInput

SetIfMatch sets the IfMatch field's value.

func (*UpdateStreamingDistributionInput) SetStreamingDistributionConfig

func (s *UpdateStreamingDistributionInput) SetStreamingDistributionConfig(v *StreamingDistributionConfig) *UpdateStreamingDistributionInput

SetStreamingDistributionConfig sets the StreamingDistributionConfig field's value.

func (UpdateStreamingDistributionInput) String

func (s UpdateStreamingDistributionInput) String() string

String returns the string representation

func (*UpdateStreamingDistributionInput) Validate

func (s *UpdateStreamingDistributionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateStreamingDistributionOutput

The returned result of the corresponding request. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/UpdateStreamingDistributionResult

type UpdateStreamingDistributionOutput struct {

    // The current version of the configuration. For example: E2QWRUHAPOMQZL.
    ETag *string `location:"header" locationName:"ETag" type:"string"`

    // The streaming distribution's information.
    StreamingDistribution *StreamingDistribution `type:"structure"`
    // contains filtered or unexported fields
}

func (UpdateStreamingDistributionOutput) GoString

func (s UpdateStreamingDistributionOutput) GoString() string

GoString returns the string representation

func (*UpdateStreamingDistributionOutput) SetETag

func (s *UpdateStreamingDistributionOutput) SetETag(v string) *UpdateStreamingDistributionOutput

SetETag sets the ETag field's value.

func (*UpdateStreamingDistributionOutput) SetStreamingDistribution

func (s *UpdateStreamingDistributionOutput) SetStreamingDistribution(v *StreamingDistribution) *UpdateStreamingDistributionOutput

SetStreamingDistribution sets the StreamingDistribution field's value.

func (UpdateStreamingDistributionOutput) String

func (s UpdateStreamingDistributionOutput) String() string

String returns the string representation

type ViewerCertificate

A complex type that specifies the following:

* Which SSL/TLS certificate to use when viewers request objects using
HTTPS

* Whether you want CloudFront to use dedicated IP addresses or SNI when
you're using alternate domain names in your object names

* The minimum protocol version that you want CloudFront to use when communicating
with viewers

For more information, see Using an HTTPS Connection to Access Your Objects (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html) in the Amazon Amazon CloudFront Developer Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2017-03-25/ViewerCertificate

type ViewerCertificate struct {
    ACMCertificateArn *string `type:"string"`

    // Include one of these values to specify the following:
    //
    //    * Whether you want viewers to use HTTP or HTTPS to request your objects.
    //
    //    * If you want viewers to use HTTPS, whether you're using an alternate
    //    domain name such as example.com or the CloudFront domain name for your
    //    distribution, such as d111111abcdef8.cloudfront.net.
    //
    //    * If you're using an alternate domain name, whether AWS Certificate Manager
    //    (ACM) provided the certificate, or you purchased a certificate from a
    //    third-party certificate authority and imported it into ACM or uploaded
    //    it to the IAM certificate store.
    //
    // You must specify one (and only one) of the three values. Do not specify false
    // for CloudFrontDefaultCertificate.
    //
    // If you want viewers to use HTTP to request your objects: Specify the following
    // value:
    //
    // <CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>
    //
    // In addition, specify allow-all for ViewerProtocolPolicy for all of your cache
    // behaviors.
    //
    // If you want viewers to use HTTPS to request your objects: Choose the type
    // of certificate that you want to use based on whether you're using an alternate
    // domain name for your objects or the CloudFront domain name:
    //
    //    * If you're using an alternate domain name, such as example.com: Specify
    //    one of the following values, depending on whether ACM provided your certificate
    //    or you purchased your certificate from third-party certificate authority:
    //
    // <ACMCertificateArn>ARN for ACM SSL/TLS certificate<ACMCertificateArn> where
    //    ARN for ACM SSL/TLS certificate is the ARN for the ACM SSL/TLS certificate
    //    that you want to use for this distribution.
    //
    // <IAMCertificateId>IAM certificate ID<IAMCertificateId> where IAM certificate
    //    ID is the ID that IAM returned when you added the certificate to the IAM
    //    certificate store.
    //
    // If you specify ACMCertificateArn or IAMCertificateId, you must also specify
    //    a value for SSLSupportMethod.
    //
    // If you choose to use an ACM certificate or a certificate in the IAM certificate
    //    store, we recommend that you use only an alternate domain name in your
    //    object URLs (https://example.com/logo.jpg). If you use the domain name
    //    that is associated with your CloudFront distribution (https://d111111abcdef8.cloudfront.net/logo.jpg)
    //    and the viewer supports SNI, then CloudFront behaves normally. However,
    //    if the browser does not support SNI, the user's experience depends on
    //    the value that you choose for SSLSupportMethod:
    //
    // vip: The viewer displays a warning because there is a mismatch between the
    //    CloudFront domain name and the domain name in your SSL/TLS certificate.
    //
    // sni-only: CloudFront drops the connection with the browser without returning
    //    the object.
    //
    //    * If you're using the CloudFront domain name for your distribution, such
    //    as d111111abcdef8.cloudfront.net: Specify the following value:
    //
    //  <CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>
    //
    // If you want viewers to use HTTPS, you must also specify one of the following
    //    values in your cache behaviors:
    //
    //  <ViewerProtocolPolicy>https-only<ViewerProtocolPolicy>
    //
    //  <ViewerProtocolPolicy>redirect-to-https<ViewerProtocolPolicy>
    //
    // You can also optionally require that CloudFront use HTTPS to communicate
    //    with your origin by specifying one of the following values for the applicable
    //    origins:
    //
    //  <OriginProtocolPolicy>https-only<OriginProtocolPolicy>
    //
    //  <OriginProtocolPolicy>match-viewer<OriginProtocolPolicy>
    //
    // For more information, see Using Alternate Domain Names and HTTPS (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html#CNAMEsAndHTTPS)
    //    in the Amazon CloudFront Developer Guide.
    Certificate *string `deprecated:"true" type:"string"`

    // This field is deprecated. You can use one of the following: [ACMCertificateArn,
    // IAMCertificateId, or CloudFrontDefaultCertificate].
    CertificateSource *string `deprecated:"true" type:"string" enum:"CertificateSource"`

    CloudFrontDefaultCertificate *bool `type:"boolean"`

    IAMCertificateId *string `type:"string"`

    // Specify the minimum version of the SSL/TLS protocol that you want CloudFront
    // to use for HTTPS connections between viewers and CloudFront: SSLv3 or TLSv1.
    // CloudFront serves your objects only to viewers that support SSL/TLS version
    // that you specify and later versions. The TLSv1 protocol is more secure, so
    // we recommend that you specify SSLv3 only if your users are using browsers
    // or devices that don't support TLSv1. Note the following:
    //
    //    * If you specify <CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>,
    //    the minimum SSL protocol version is TLSv1 and can't be changed.
    //
    //    * If you're using a custom certificate (if you specify a value for ACMCertificateArn
    //    or for IAMCertificateId) and if you're using SNI (if you specify sni-only
    //    for SSLSupportMethod), you must specify TLSv1 for MinimumProtocolVersion.
    MinimumProtocolVersion *string `type:"string" enum:"MinimumProtocolVersion"`

    // If you specify a value for ACMCertificateArn or for IAMCertificateId, you
    // must also specify how you want CloudFront to serve HTTPS requests: using
    // a method that works for all clients or one that works for most clients:
    //
    //    * vip: CloudFront uses dedicated IP addresses for your content and can
    //    respond to HTTPS requests from any viewer. However, you will incur additional
    //    monthly charges.
    //
    //    * sni-only: CloudFront can respond to HTTPS requests from viewers that
    //    support Server Name Indication (SNI). All modern browsers support SNI,
    //    but some browsers still in use don't support SNI. If some of your users'
    //    browsers don't support SNI, we recommend that you do one of the following:
    //
    // Use the vip option (dedicated IP addresses) instead of sni-only.
    //
    // Use the CloudFront SSL/TLS certificate instead of a custom certificate. This
    //    requires that you use the CloudFront domain name of your distribution
    //    in the URLs for your objects, for example, https://d111111abcdef8.cloudfront.net/logo.png.
    //
    // If you can control which browser your users use, upgrade the browser to one
    //    that supports SNI.
    //
    // Use HTTP instead of HTTPS.
    //
    // Do not specify a value for SSLSupportMethod if you specified <CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>.
    //
    // For more information, see Using Alternate Domain Names and HTTPS (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html#CNAMEsAndHTTPS.html)
    // in the Amazon CloudFront Developer Guide.
    SSLSupportMethod *string `type:"string" enum:"SSLSupportMethod"`
    // contains filtered or unexported fields
}

func (ViewerCertificate) GoString

func (s ViewerCertificate) GoString() string

GoString returns the string representation

func (*ViewerCertificate) SetACMCertificateArn

func (s *ViewerCertificate) SetACMCertificateArn(v string) *ViewerCertificate

SetACMCertificateArn sets the ACMCertificateArn field's value.

func (*ViewerCertificate) SetCertificate

func (s *ViewerCertificate) SetCertificate(v string) *ViewerCertificate

SetCertificate sets the Certificate field's value.

func (*ViewerCertificate) SetCertificateSource

func (s *ViewerCertificate) SetCertificateSource(v string) *ViewerCertificate

SetCertificateSource sets the CertificateSource field's value.

func (*ViewerCertificate) SetCloudFrontDefaultCertificate

func (s *ViewerCertificate) SetCloudFrontDefaultCertificate(v bool) *ViewerCertificate

SetCloudFrontDefaultCertificate sets the CloudFrontDefaultCertificate field's value.

func (*ViewerCertificate) SetIAMCertificateId

func (s *ViewerCertificate) SetIAMCertificateId(v string) *ViewerCertificate

SetIAMCertificateId sets the IAMCertificateId field's value.

func (*ViewerCertificate) SetMinimumProtocolVersion

func (s *ViewerCertificate) SetMinimumProtocolVersion(v string) *ViewerCertificate

SetMinimumProtocolVersion sets the MinimumProtocolVersion field's value.

func (*ViewerCertificate) SetSSLSupportMethod

func (s *ViewerCertificate) SetSSLSupportMethod(v string) *ViewerCertificate

SetSSLSupportMethod sets the SSLSupportMethod field's value.

func (ViewerCertificate) String

func (s ViewerCertificate) String() string

String returns the string representation

Subdirectories

Name Synopsis
..
cloudfrontiface Package cloudfrontiface provides an interface to enable mocking the Amazon CloudFront service client for testing your code.
sign Package sign provides utilities to generate signed URLs for Amazon CloudFront.