Method: Aws::Redshift::Types::DescribeClusterSnapshotsMessage#end_time
- Defined in:
- lib/aws-sdk-redshift/types.rb
#end_time ⇒ Time
A time value that requests only snapshots created at or before the specified time. The time value is specified in ISO 8601 format. For more information about ISO 8601, go to the [ISO8601 Wikipedia page.]
Example: 2012-07-16T18:00:00Z
4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 |
# File 'lib/aws-sdk-redshift/types.rb', line 4380 class DescribeClusterSnapshotsMessage < Struct.new( :cluster_identifier, :snapshot_identifier, :snapshot_arn, :snapshot_type, :start_time, :end_time, :max_records, :marker, :owner_account, :tag_keys, :tag_values, :cluster_exists, :sorting_entities) SENSITIVE = [] include Aws::Structure end |