Class: Aws::IoT::Types::PolicyVersionIdentifier

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

{
  policy_name: "PolicyName",
  policy_version_id: "PolicyVersionId",
}

Information about the version of the policy associated with the resource.

Instance Attribute Summary collapse

Instance Attribute Details

#policy_nameString

The name of the policy.

Returns:

  • (String)


8210
8211
8212
8213
8214
# File 'lib/aws-sdk-iot/types.rb', line 8210

class PolicyVersionIdentifier < Struct.new(
  :policy_name,
  :policy_version_id)
  include Aws::Structure
end

#policy_version_idString

The ID of the version of the policy associated with the resource.

Returns:

  • (String)


8210
8211
8212
8213
8214
# File 'lib/aws-sdk-iot/types.rb', line 8210

class PolicyVersionIdentifier < Struct.new(
  :policy_name,
  :policy_version_id)
  include Aws::Structure
end