Class: Aws::IoT::Types::AttachSecurityProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AttachSecurityProfileRequest
- Defined in:
- gems/aws-sdk-iot/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
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_profile_name ⇒ String
The security profile that is attached.
-
#security_profile_target_arn ⇒ String
The ARN of the target (thing group) to which the security profile is attached.
Instance Attribute Details
#security_profile_name ⇒ String
The security profile that is attached.
912 913 914 915 916 917 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 912 class AttachSecurityProfileRequest < Struct.new( :security_profile_name, :security_profile_target_arn) SENSITIVE = [] include Aws::Structure end |
#security_profile_target_arn ⇒ String
The ARN of the target (thing group) to which the security profile is attached.
912 913 914 915 916 917 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 912 class AttachSecurityProfileRequest < Struct.new( :security_profile_name, :security_profile_target_arn) SENSITIVE = [] include Aws::Structure end |