Class: Aws::IoT::Types::DeleteSecurityProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteSecurityProfileRequest
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass DeleteSecurityProfileRequest data as a hash:
{
security_profile_name: "SecurityProfileName", # required
expected_version: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expected_version ⇒ Integer
The expected version of the security profile.
-
#security_profile_name ⇒ String
The name of the security profile to be deleted.
Instance Attribute Details
#expected_version ⇒ Integer
The expected version of the security profile. A new version is
generated whenever the security profile is updated. If you specify a
value that is different from the actual version, a
VersionConflictException
is thrown.
6243 6244 6245 6246 6247 6248 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 6243 class DeleteSecurityProfileRequest < Struct.new( :security_profile_name, :expected_version) SENSITIVE = [] include Aws::Structure end |
#security_profile_name ⇒ String
The name of the security profile to be deleted.
6243 6244 6245 6246 6247 6248 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 6243 class DeleteSecurityProfileRequest < Struct.new( :security_profile_name, :expected_version) SENSITIVE = [] include Aws::Structure end |