Amazon.CloudFront.AmazonCloudFrontClient.CreateStreamingDistribution C# (CSharp) Метод

CreateStreamingDistribution() публичный Метод

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

/// Access denied. /// /// /// /// The value of Quantity and the size of Items do not match. /// /// The argument is invalid. /// /// The origin access identity is not valid or doesn't exist. /// /// The Amazon S3 origin server specified does not refer to a valid Amazon S3 bucket. /// /// This operation requires a body. Ensure that the body is present and the Content-Type /// header is set. /// /// /// /// /// /// Processing your request would cause you to exceed the maximum number of streaming /// distributions allowed. /// /// Your request contains more trusted signers than are allowed per distribution. /// /// One or more of your trusted signers do not exist. ///
public CreateStreamingDistribution ( CreateStreamingDistributionRequest request ) : CreateStreamingDistributionResponse
request Amazon.CloudFront.Model.CreateStreamingDistributionRequest Container for the necessary parameters to execute the CreateStreamingDistribution service method.
Результат Amazon.CloudFront.Model.CreateStreamingDistributionResponse
        public CreateStreamingDistributionResponse CreateStreamingDistribution(CreateStreamingDistributionRequest request)
        {
            var marshaller = new CreateStreamingDistributionRequestMarshaller();
            var unmarshaller = CreateStreamingDistributionResponseUnmarshaller.Instance;

            return Invoke<CreateStreamingDistributionRequest,CreateStreamingDistributionResponse>(request, marshaller, unmarshaller);
        }
AmazonCloudFrontClient