Class: Aws::FSx::Types::UpdateSnapshotRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::UpdateSnapshotRequest
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
Note:
When making an API call, you may pass UpdateSnapshotRequest data as a hash:
{
client_request_token: "ClientRequestToken",
name: "SnapshotName", # required
snapshot_id: "SnapshotId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters.
-
#name ⇒ String
The name of the snapshot to update.
-
#snapshot_id ⇒ String
The ID of the snapshot that you want to update, in the format
fsvolsnap-0123456789abcdef0
.
Instance Attribute Details
#client_request_token ⇒ String
(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
A suitable default value is auto-generated. You should normally not need to pass this option.
8422 8423 8424 8425 8426 8427 8428 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8422 class UpdateSnapshotRequest < Struct.new( :client_request_token, :name, :snapshot_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the snapshot to update.
8422 8423 8424 8425 8426 8427 8428 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8422 class UpdateSnapshotRequest < Struct.new( :client_request_token, :name, :snapshot_id) SENSITIVE = [] include Aws::Structure end |
#snapshot_id ⇒ String
The ID of the snapshot that you want to update, in the format
fsvolsnap-0123456789abcdef0
.
8422 8423 8424 8425 8426 8427 8428 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8422 class UpdateSnapshotRequest < Struct.new( :client_request_token, :name, :snapshot_id) SENSITIVE = [] include Aws::Structure end |