Package-level declarations

Types

data class ApplicationInstanceManifestOverridesPayload(val payloadData: String? = null)

Parameter overrides for an application instance. This is a JSON document that has a single key (`PayloadData`) where the value is an escaped string representation of the overrides document.

Link copied to clipboard
data class ApplicationInstanceManifestPayload(val payloadData: String? = null)

A application verion's manifest file. This is a JSON document that has a single key (`PayloadData`) where the value is an escaped string representation of the application manifest (`graph.json`). This file is located in the `graphs` folder in your application source.

Link copied to clipboard
data class GetApplicationInstanceResult(val applicationInstanceId: String? = null, val arn: String? = null, val createdTime: Int? = null, val defaultRuntimeContextDeviceName: String? = null, val healthStatus: ApplicationInstanceHealthStatus? = null, val lastUpdatedTime: Int? = null, val status: ApplicationInstanceStatus? = null, val statusDescription: String? = null, val tags: List<Tag>? = null)
Link copied to clipboard
data class GetPackageResult(val arn: String? = null, val createdTime: Int? = null, val packageId: String? = null, val storageLocation: PackageStorageLocation? = null, val tags: List<Tag>? = null)
Link copied to clipboard
data class GetPackageVersionResult(val isLatestPatch: Boolean? = null, val markLatest: Boolean? = null, val packageArn: String? = null, val packageName: String? = null, val registeredTime: Int? = null, val status: PackageVersionStatus? = null, val statusDescription: String? = null)
Link copied to clipboard
data class PackageStorageLocation(val binaryPrefixLocation: String? = null, val bucket: String? = null, val generatedPrefixLocation: String? = null, val manifestPrefixLocation: String? = null, val repoPrefixLocation: String? = null)

A storage location.