Class: Aws::AppSync::Types::UpdateApiKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::UpdateApiKeyRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass UpdateApiKeyRequest data as a hash:
{
api_id: "String", # required
id: "String", # required
description: "String",
expires: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_id ⇒ String
The ID for the GraphQL API.
-
#description ⇒ String
A description of the purpose of the API key.
-
#expires ⇒ Integer
From the update time, the time after which the API key expires.
-
#id ⇒ String
The API key ID.
Instance Attribute Details
#api_id ⇒ String
The ID for the GraphQL API.
3535 3536 3537 3538 3539 3540 3541 3542 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3535 class UpdateApiKeyRequest < Struct.new( :api_id, :id, :description, :expires) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the purpose of the API key.
3535 3536 3537 3538 3539 3540 3541 3542 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3535 class UpdateApiKeyRequest < Struct.new( :api_id, :id, :description, :expires) SENSITIVE = [] include Aws::Structure end |
#expires ⇒ Integer
From the update time, the time after which the API key expires. The date is represented as seconds since the epoch. For more information, see .
3535 3536 3537 3538 3539 3540 3541 3542 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3535 class UpdateApiKeyRequest < Struct.new( :api_id, :id, :description, :expires) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The API key ID.
3535 3536 3537 3538 3539 3540 3541 3542 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3535 class UpdateApiKeyRequest < Struct.new( :api_id, :id, :description, :expires) SENSITIVE = [] include Aws::Structure end |