Class: Aws::PCS::Types::JwtKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::PCS::Types::JwtKey
- Defined in:
- gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb
Overview
The JWT key stored in AWS Secrets Manager for Slurm REST API authentication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#secret_arn ⇒ String
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the JWT key.
-
#secret_version ⇒ String
The version of the AWS Secrets Manager secret containing the JWT key.
Instance Attribute Details
#secret_arn ⇒ String
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the JWT key.
1201 1202 1203 1204 1205 1206 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 1201 class JwtKey < Struct.new( :secret_arn, :secret_version) SENSITIVE = [] include Aws::Structure end |