Class: Aws::Backup::Types::IndexAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::IndexAction
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
This is an optional array within a BackupRule.
IndexAction consists of one ResourceTypes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_types ⇒ Array<String>
0 or 1 index action will be accepted for each BackupRule.
Instance Attribute Details
#resource_types ⇒ Array<String>
0 or 1 index action will be accepted for each BackupRule.
Valid values:
EBS
for Amazon Elastic Block StoreS3
for Amazon Simple Storage Service (Amazon S3)
4332 4333 4334 4335 4336 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 4332 class IndexAction < Struct.new( :resource_types) SENSITIVE = [] include Aws::Structure end |