Class: Aws::IAM::Types::UntagServerCertificateRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#server_certificate_nameString

The name of the IAM server certificate from which you want to remove tags.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Returns:

  • (String)


10700
10701
10702
10703
10704
10705
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10700

class UntagServerCertificateRequest < Struct.new(
  :server_certificate_name,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#tag_keysArray<String>

A list of key names as a simple array of strings. The tags with matching keys are removed from the specified IAM server certificate.

Returns:

  • (Array<String>)


10700
10701
10702
10703
10704
10705
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10700

class UntagServerCertificateRequest < Struct.new(
  :server_certificate_name,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end