Class: Aws::IoT::Types::DeleteSecurityProfileRequest

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

{
  security_profile_name: "SecurityProfileName", # required
  expected_version: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#expected_versionInteger

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 than the actual version, a ‘VersionConflictException` is thrown.

Returns:

  • (Integer)


3432
3433
3434
3435
3436
# File 'lib/aws-sdk-iot/types.rb', line 3432

class DeleteSecurityProfileRequest < Struct.new(
  :security_profile_name,
  :expected_version)
  include Aws::Structure
end

#security_profile_nameString

The name of the security profile to be deleted.

Returns:

  • (String)


3432
3433
3434
3435
3436
# File 'lib/aws-sdk-iot/types.rb', line 3432

class DeleteSecurityProfileRequest < Struct.new(
  :security_profile_name,
  :expected_version)
  include Aws::Structure
end