Class: Aws::IoT::Types::AttachSecurityProfileRequest

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 AttachSecurityProfileRequest data as a hash:

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

Instance Attribute Summary collapse

Instance Attribute Details

#security_profile_nameString

The security profile that is attached.



563
564
565
566
567
# File 'lib/aws-sdk-iot/types.rb', line 563

class AttachSecurityProfileRequest < Struct.new(
  :security_profile_name,
  :security_profile_target_arn)
  include Aws::Structure
end

#security_profile_target_arnString

The ARN of the target (thing group) to which the security profile is attached.



563
564
565
566
567
# File 'lib/aws-sdk-iot/types.rb', line 563

class AttachSecurityProfileRequest < Struct.new(
  :security_profile_name,
  :security_profile_target_arn)
  include Aws::Structure
end