Class: Aws::IVS::Types::ImportPlaybackKeyPairRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ivs/types.rb

Overview

Note:

When making an API call, you may pass ImportPlaybackKeyPairRequest data as a hash:

{
  name: "PlaybackKeyPairName",
  public_key_material: "PlaybackPublicKeyMaterial", # required
  tags: {
    "TagKey" => "TagValue",
  },
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Playback-key-pair name. The value does not need to be unique.

Returns:

  • (String)


808
809
810
811
812
813
814
# File 'lib/aws-sdk-ivs/types.rb', line 808

class ImportPlaybackKeyPairRequest < Struct.new(
  :name,
  :public_key_material,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#public_key_materialString

The public portion of a customer-generated key pair.

Returns:

  • (String)


808
809
810
811
812
813
814
# File 'lib/aws-sdk-ivs/types.rb', line 808

class ImportPlaybackKeyPairRequest < Struct.new(
  :name,
  :public_key_material,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

Any tags provided with the request are added to the playback key pair tags.

Returns:

  • (Hash<String,String>)


808
809
810
811
812
813
814
# File 'lib/aws-sdk-ivs/types.rb', line 808

class ImportPlaybackKeyPairRequest < Struct.new(
  :name,
  :public_key_material,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end