Class: Aws::IVSRealTime::Types::PublicKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVSRealTime::Types::PublicKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivsrealtime/types.rb
Overview
Object specifying a public key used to sign stage participant tokens.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
Public key ARN.
-
#fingerprint ⇒ String
The public key fingerprint, a short string used to identify or verify the full public key.
-
#name ⇒ String
Public key name.
-
#public_key_material ⇒ String
Public key material.
-
#tags ⇒ Hash<String,String>
Tags attached to the resource.
Instance Attribute Details
#arn ⇒ String
Public key ARN.
2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2142 class PublicKey < Struct.new( :arn, :name, :public_key_material, :fingerprint, :tags) SENSITIVE = [] include Aws::Structure end |
#fingerprint ⇒ String
The public key fingerprint, a short string used to identify or verify the full public key.
2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2142 class PublicKey < Struct.new( :arn, :name, :public_key_material, :fingerprint, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Public key name.
2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2142 class PublicKey < Struct.new( :arn, :name, :public_key_material, :fingerprint, :tags) SENSITIVE = [] include Aws::Structure end |
#public_key_material ⇒ String
Public key material.
2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2142 class PublicKey < Struct.new( :arn, :name, :public_key_material, :fingerprint, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Tags attached to the resource. Array of maps, each of the form ‘string:string (key:value)`. See [Best practices and strategies] in *Tagging AWS Resources and Tag Editor* for details, including restrictions that apply to tags and “Tag naming limits and requirements”; Amazon IVS has no constraints on tags beyond what is documented there.
[1]: docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2142 class PublicKey < Struct.new( :arn, :name, :public_key_material, :fingerprint, :tags) SENSITIVE = [] include Aws::Structure end |