Class: Aws::FSx::Types::CreateOpenZFSOriginSnapshotConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::FSx::Types::CreateOpenZFSOriginSnapshotConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-fsx/types.rb
 
Overview
The snapshot configuration to use when creating an Amazon FSx for OpenZFS volume from a snapshot.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #copy_strategy  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the strategy used when copying data from the snapshot to the new volume.
 - 
  
    
      #snapshot_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) for a given resource.
 
Instance Attribute Details
#copy_strategy ⇒ String
Specifies the strategy used when copying data from the snapshot to the new volume.
- 
‘CLONE` - The new volume references the data in the origin snapshot. Cloning a snapshot is faster than copying data from the snapshot to a new volume and doesn’t consume disk throughput. However, the origin snapshot can’t be deleted if there is a volume using its copied data.
 - 
‘FULL_COPY` - Copies all data from the snapshot to the new volume.
Specify this option to create the volume from a snapshot on another FSx for OpenZFS file system.
 
<note markdown=“1”> The ‘INCREMENTAL_COPY` option is only for updating an existing volume by using a snapshot from another FSx for OpenZFS file system. For more information, see [CopySnapshotAndUpdateVolume].
</note>
[1]: docs.aws.amazon.com/fsx/latest/APIReference/API_CopySnapshotAndUpdateVolume.html
      3035 3036 3037 3038 3039 3040  | 
    
      # File 'lib/aws-sdk-fsx/types.rb', line 3035 class CreateOpenZFSOriginSnapshotConfiguration < Struct.new( :snapshot_arn, :copy_strategy) SENSITIVE = [] include Aws::Structure end  | 
  
#snapshot_arn ⇒ String
The Amazon Resource Name (ARN) for a given resource. ARNs uniquely identify Amazon Web Services resources. We require an ARN when you need to specify a resource unambiguously across all of Amazon Web Services. For more information, see [Amazon Resource Names (ARNs)] in the *Amazon Web Services General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
      3035 3036 3037 3038 3039 3040  | 
    
      # File 'lib/aws-sdk-fsx/types.rb', line 3035 class CreateOpenZFSOriginSnapshotConfiguration < Struct.new( :snapshot_arn, :copy_strategy) SENSITIVE = [] include Aws::Structure end  |