Class: Aws::IoT::Types::DetachSecurityProfileRequest

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

Overview

Note:

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

{
  security_profile_name: "SecurityProfileName", # required
  security_profile_target_arn: "SecurityProfileTargetArn", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_profile_nameString

The security profile that is detached.

Returns:

  • (String)


8365
8366
8367
8368
8369
8370
# File 'lib/aws-sdk-iot/types.rb', line 8365

class DetachSecurityProfileRequest < Struct.new(
  :security_profile_name,
  :security_profile_target_arn)
  SENSITIVE = []
  include Aws::Structure
end

#security_profile_target_arnString

The ARN of the thing group from which the security profile is detached.

Returns:

  • (String)


8365
8366
8367
8368
8369
8370
# File 'lib/aws-sdk-iot/types.rb', line 8365

class DetachSecurityProfileRequest < Struct.new(
  :security_profile_name,
  :security_profile_target_arn)
  SENSITIVE = []
  include Aws::Structure
end