Table of Contents

Class ClientContextConfig

Namespace
Amazon.Runtime.Internal
Assembly
AWSSDK.Core.dll

Provides information for Client Context header. Client Context header needs information like App title, version code, version name, package name etc.

public class ClientContextConfig
Inheritance
ClientContextConfig
Inherited Members

Constructors

ClientContextConfig()

public ClientContextConfig()

Properties

AppPackageName

The name of your app package. For example, com.your_company.your_app. If this property is not null, the value would be used in Client Context header.

public string AppPackageName { get; set; }

Property Value

string

AppTitle

The title of your app. For example, "My App". If this property is not null, the value would be used in Client Context header.

public string AppTitle { get; set; }

Property Value

string

AppVersionCode

The version code of your app. For example, 3.0. If this property is not null, the value would be used in Client Context header.

public string AppVersionCode { get; set; }

Property Value

string

AppVersionName

The version for your app. For example, V3.0. If this property is not null, the value would be used in Client Context header.

public string AppVersionName { get; set; }

Property Value

string

Locale

The locale of the device. For example, en_US. If this property is not null, the value would be used in Client Context header.

public string Locale { get; set; }

Property Value

string

Make

The manufacturer of the device. For example, Samsung. If this property is not null, the value would be used in Client Context header.

public string Make { get; set; }

Property Value

string

Model

The model of the device. For example, Nexus. If this property is not null, the value would be used in Client Context header.

public string Model { get; set; }

Property Value

string

Platform

The operating system of the device. For example, iPhoneOS. If this property is not null, the value would be used in Client Context header.

public string Platform { get; set; }

Property Value

string

PlatformVersion

The version of the operating system of the device. For example, 8.1. If this property is not null, the value would be used in Client Context header.

public string PlatformVersion { get; set; }

Property Value

string