AwsRedshiftClusterPendingModifiedValues.fromJson constructor
AwsRedshiftClusterPendingModifiedValues.fromJson(
- Map<String, dynamic> json
)
Implementation
factory AwsRedshiftClusterPendingModifiedValues.fromJson(
Map<String, dynamic> json) {
return AwsRedshiftClusterPendingModifiedValues(
automatedSnapshotRetentionPeriod:
json['AutomatedSnapshotRetentionPeriod'] as int?,
clusterIdentifier: json['ClusterIdentifier'] as String?,
clusterType: json['ClusterType'] as String?,
clusterVersion: json['ClusterVersion'] as String?,
encryptionType: json['EncryptionType'] as String?,
enhancedVpcRouting: json['EnhancedVpcRouting'] as bool?,
maintenanceTrackName: json['MaintenanceTrackName'] as String?,
masterUserPassword: json['MasterUserPassword'] as String?,
nodeType: json['NodeType'] as String?,
numberOfNodes: json['NumberOfNodes'] as int?,
publiclyAccessible: json['PubliclyAccessible'] as bool?,
);
}