Class: Aws::FMS::Types::ResourceSetSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::ResourceSetSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
Summarizes the resource sets used in a policy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the resource set.
-
#id ⇒ String
A unique identifier for the resource set.
-
#last_update_time ⇒ Time
The last time that the resource set was changed.
-
#name ⇒ String
The descriptive name of the resource set.
-
#resource_set_status ⇒ String
Indicates whether the resource set is in or out of an admin’s Region scope.
Instance Attribute Details
#description ⇒ String
A description of the resource set.
4416 4417 4418 4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-fms/types.rb', line 4416 class ResourceSetSummary < Struct.new( :id, :name, :description, :last_update_time, :resource_set_status) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A unique identifier for the resource set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.
4416 4417 4418 4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-fms/types.rb', line 4416 class ResourceSetSummary < Struct.new( :id, :name, :description, :last_update_time, :resource_set_status) SENSITIVE = [] include Aws::Structure end |
#last_update_time ⇒ Time
The last time that the resource set was changed.
4416 4417 4418 4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-fms/types.rb', line 4416 class ResourceSetSummary < Struct.new( :id, :name, :description, :last_update_time, :resource_set_status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The descriptive name of the resource set. You can’t change the name of a resource set after you create it.
4416 4417 4418 4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-fms/types.rb', line 4416 class ResourceSetSummary < Struct.new( :id, :name, :description, :last_update_time, :resource_set_status) SENSITIVE = [] include Aws::Structure end |
#resource_set_status ⇒ String
Indicates whether the resource set is in or out of an admin’s Region scope.
-
‘ACTIVE` - The administrator can manage and delete the resource set.
-
‘OUT_OF_ADMIN_SCOPE` - The administrator can view the resource set, but they can’t edit or delete the resource set. Existing protections stay in place. Any new resource that come into scope of the resource set won’t be protected.
4416 4417 4418 4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-fms/types.rb', line 4416 class ResourceSetSummary < Struct.new( :id, :name, :description, :last_update_time, :resource_set_status) SENSITIVE = [] include Aws::Structure end |