Class: Aws::SecurityHub::Types::AwsDynamoDbTableRestoreSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsDynamoDbTableRestoreSummary
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsDynamoDbTableRestoreSummary data as a hash:
{
source_backup_arn: "NonEmptyString",
source_table_arn: "NonEmptyString",
restore_date_time: "NonEmptyString",
restore_in_progress: false,
}
Information about the restore for the table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#restore_date_time ⇒ String
Indicates the point in time that the table was restored to.
-
#restore_in_progress ⇒ Boolean
Whether a restore is currently in progress.
-
#source_backup_arn ⇒ String
The ARN of the source backup from which the table was restored.
-
#source_table_arn ⇒ String
The ARN of the source table for the backup.
Instance Attribute Details
#restore_date_time ⇒ String
Indicates the point in time that the table was restored to.
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
.
5214 5215 5216 5217 5218 5219 5220 5221 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 5214 class AwsDynamoDbTableRestoreSummary < Struct.new( :source_backup_arn, :source_table_arn, :restore_date_time, :restore_in_progress) SENSITIVE = [] include Aws::Structure end |
#restore_in_progress ⇒ Boolean
Whether a restore is currently in progress.
5214 5215 5216 5217 5218 5219 5220 5221 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 5214 class AwsDynamoDbTableRestoreSummary < Struct.new( :source_backup_arn, :source_table_arn, :restore_date_time, :restore_in_progress) SENSITIVE = [] include Aws::Structure end |
#source_backup_arn ⇒ String
The ARN of the source backup from which the table was restored.
5214 5215 5216 5217 5218 5219 5220 5221 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 5214 class AwsDynamoDbTableRestoreSummary < Struct.new( :source_backup_arn, :source_table_arn, :restore_date_time, :restore_in_progress) SENSITIVE = [] include Aws::Structure end |
#source_table_arn ⇒ String
The ARN of the source table for the backup.
5214 5215 5216 5217 5218 5219 5220 5221 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 5214 class AwsDynamoDbTableRestoreSummary < Struct.new( :source_backup_arn, :source_table_arn, :restore_date_time, :restore_in_progress) SENSITIVE = [] include Aws::Structure end |