AddApplicationVpcConfigurationResponse.fromJson constructor
AddApplicationVpcConfigurationResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory AddApplicationVpcConfigurationResponse.fromJson(
Map<String, dynamic> json) {
return AddApplicationVpcConfigurationResponse(
applicationARN: json['ApplicationARN'] as String?,
applicationVersionId: json['ApplicationVersionId'] as int?,
vpcConfigurationDescription: json['VpcConfigurationDescription'] != null
? VpcConfigurationDescription.fromJson(
json['VpcConfigurationDescription'] as Map<String, dynamic>)
: null,
);
}