Skip to main content

streaming_distribution_configs

Creates, updates, deletes, gets or lists a streaming_distribution_configs resource.

Overview

Namestreaming_distribution_configs
TypeResource
Idaws.cloudfront.streaming_distribution_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aliasesstringA complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.
caller_referencestringA 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 StreamingDistributionConfig object), CloudFront creates a new distribution. If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.
commentstringAny comments you want to include about the streaming distribution.
enabledbooleanWhether the streaming distribution is enabled to accept user requests for content.
loggingstringA complex type that controls whether access logs are written for the streaming distribution.
price_classstringA complex type that contains information about price class for this streaming distribution.
s3_originstringA complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.
trusted_signersstringA complex type that specifies any Amazon Web Services 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 in the Amazon CloudFront Developer Guide.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_streaming_distribution_configselectid, regionGet the configuration information about a streaming distribution.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
idstringThe streaming distribution's ID.
regionstringAWS region (default: us-east-1)

SELECT examples

Get the configuration information about a streaming distribution.

SELECT
aliases,
caller_reference,
comment,
enabled,
logging,
price_class,
s3_origin,
trusted_signers
FROM aws.cloudfront.streaming_distribution_configs
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;