Class: Aws::SecurityHub::Types::AwsIamPolicyVersion
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsIamPolicyVersion
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsIamPolicyVersion data as a hash:
{
version_id: "NonEmptyString",
is_default_version: false,
create_date: "NonEmptyString",
}
A version of an IAM policy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#create_date ⇒ String
Indicates when the version was created.
-
#is_default_version ⇒ Boolean
Whether the version is the default version.
-
#version_id ⇒ String
The identifier of the policy version.
Instance Attribute Details
#create_date ⇒ String
Indicates when the version was created.
Uses the date-time
format specified in RFC 3339 section 5.6,
Internet Date/Time Format. The value cannot contain spaces. For
example, 2020-03-22T13:22:13.933Z
.
6215 6216 6217 6218 6219 6220 6221 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6215 class AwsIamPolicyVersion < Struct.new( :version_id, :is_default_version, :create_date) SENSITIVE = [] include Aws::Structure end |
#is_default_version ⇒ Boolean
Whether the version is the default version.
6215 6216 6217 6218 6219 6220 6221 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6215 class AwsIamPolicyVersion < Struct.new( :version_id, :is_default_version, :create_date) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
The identifier of the policy version.
6215 6216 6217 6218 6219 6220 6221 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6215 class AwsIamPolicyVersion < Struct.new( :version_id, :is_default_version, :create_date) SENSITIVE = [] include Aws::Structure end |