Show / Hide Table of Contents

Class CfnPlaybackConfiguration.HttpRequestProperty

The configuration for the request to the Ad Decision Server URL.

Inheritance
object
CfnPlaybackConfiguration.HttpRequestProperty
Implements
CfnPlaybackConfiguration.IHttpRequestProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaTailor
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPlaybackConfiguration.HttpRequestProperty : CfnPlaybackConfiguration.IHttpRequestProperty
Syntax (vb)
Public Class CfnPlaybackConfiguration.HttpRequestProperty Implements CfnPlaybackConfiguration.IHttpRequestProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaTailor;

             var httpRequestProperty = new HttpRequestProperty {
                 Body = "body",
                 CompressRequest = "compressRequest",
                 Headers = new Dictionary<string, string> {
                     { "headersKey", "headers" }
                 },
                 HttpMethod = "httpMethod"
             };

Synopsis

Constructors

HttpRequestProperty()

The configuration for the request to the Ad Decision Server URL.

Properties

Body

The body of the request to the Ad Decision Server URL.

CompressRequest

The compression type of the request sent to the Ad Decision Server URL.

Headers

The headers in the request sent to the Ad Decision Server URL.

HttpMethod

Supported HTTP Methods for the request to the Ad Decision Server URL.

Constructors

HttpRequestProperty()

The configuration for the request to the Ad Decision Server URL.

public HttpRequestProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaTailor;

             var httpRequestProperty = new HttpRequestProperty {
                 Body = "body",
                 CompressRequest = "compressRequest",
                 Headers = new Dictionary<string, string> {
                     { "headersKey", "headers" }
                 },
                 HttpMethod = "httpMethod"
             };

Properties

Body

The body of the request to the Ad Decision Server URL.

public string? Body { get; set; }
Property Value

string

Remarks

The maximum length is 100,000 characters.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-body

CompressRequest

The compression type of the request sent to the Ad Decision Server URL.

public string? CompressRequest { get; set; }
Property Value

string

Remarks

Only the POST HTTP Method permits compression other than NONE.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-compressrequest

Headers

The headers in the request sent to the Ad Decision Server URL.

public object? Headers { get; set; }
Property Value

object

Remarks

The max length is 10,000 characters.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-headers

Type union: either Dictionary<string, string> or IResolvable

HttpMethod

Supported HTTP Methods for the request to the Ad Decision Server URL.

public string? HttpMethod { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-httpmethod

Implements

CfnPlaybackConfiguration.IHttpRequestProperty
Back to top Generated by DocFX