AwsRedshiftClusterClusterSnapshotCopyStatus.fromJson constructor
AwsRedshiftClusterClusterSnapshotCopyStatus.fromJson(
- Map<String, dynamic> json
)
Implementation
factory AwsRedshiftClusterClusterSnapshotCopyStatus.fromJson(
Map<String, dynamic> json) {
return AwsRedshiftClusterClusterSnapshotCopyStatus(
destinationRegion: json['DestinationRegion'] as String?,
manualSnapshotRetentionPeriod:
json['ManualSnapshotRetentionPeriod'] as int?,
retentionPeriod: json['RetentionPeriod'] as int?,
snapshotCopyGrantName: json['SnapshotCopyGrantName'] as String?,
);
}