GetExtensionResult

data class GetExtensionResult(val actions: Map<String, List<ExtensionAction>>? = null, val arn: String? = null, val description: String? = null, val id: String? = null, val parameters: Map<String, ExtensionParameter>? = null, val versionNumber: Int? = null)

Constructors

Link copied to clipboard
constructor(actions: Map<String, List<ExtensionAction>>? = null, arn: String? = null, description: String? = null, id: String? = null, parameters: Map<String, ExtensionParameter>? = null, versionNumber: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The actions defined in the extension.

Link copied to clipboard
val arn: String? = null

The system-generated Amazon Resource Name (ARN) for the extension.

Link copied to clipboard
val description: String? = null

Description of the extension.

Link copied to clipboard
val id: String? = null

The system-generated ID of the extension.

Link copied to clipboard

The parameters accepted by the extension. You specify parameter values when you associate the extension to an AWS AppConfig resource by using the CreateExtensionAssociation API action. For AWS Lambda extension actions, these parameters are included in the Lambda request object.

Link copied to clipboard
val versionNumber: Int? = null

The extension version number.