Method: Aws::CloudFront::Types::CacheBehavior#smooth_streaming

Defined in:
lib/aws-sdk-cloudfront/types.rb

#smooth_streamingBoolean

<note markdown=“1”> This field only supports standard distributions. You can’t specify this field for multi-tenant distributions. For more information, see

Unsupported features for SaaS Manager for Amazon CloudFront][1

in

the *Amazon CloudFront Developer Guide*.

</note>

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`.

[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas

Returns:

  • (Boolean)


966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
# File 'lib/aws-sdk-cloudfront/types.rb', line 966

class CacheBehavior < Struct.new(
  :path_pattern,
  :target_origin_id,
  :trusted_signers,
  :trusted_key_groups,
  :viewer_protocol_policy,
  :allowed_methods,
  :smooth_streaming,
  :compress,
  :lambda_function_associations,
  :function_associations,
  :field_level_encryption_id,
  :realtime_log_config_arn,
  :cache_policy_id,
  :origin_request_policy_id,
  :response_headers_policy_id,
  :grpc_config,
  :forwarded_values,
  :min_ttl,
  :default_ttl,
  :max_ttl)
  SENSITIVE = []
  include Aws::Structure
end