ApiKeyStageKey

data class ApiKeyStageKey(val restApiId: String? = null, val stageName: String? = null)

`StageKey` is a property of the AWS::ApiGateway::ApiKey resource that specifies the stage to associate with the API key. This association allows only clients with the key to make requests to methods in that stage.

Constructors

Link copied to clipboard
constructor(restApiId: String? = null, stageName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val restApiId: String? = null

The string identifier of the associated RestApi.

Link copied to clipboard
val stageName: String? = null

The stage name associated with the stage key.