CreateWebACLMigrationStackResponse.fromJson constructor

CreateWebACLMigrationStackResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CreateWebACLMigrationStackResponse.fromJson(
    Map<String, dynamic> json) {
  return CreateWebACLMigrationStackResponse(
    s3ObjectUrl: json['S3ObjectUrl'] as String,
  );
}