PutContainerRecipePolicyResponse.fromJson constructor

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

Implementation

factory PutContainerRecipePolicyResponse.fromJson(Map<String, dynamic> json) {
  return PutContainerRecipePolicyResponse(
    containerRecipeArn: json['containerRecipeArn'] as String?,
    requestId: json['requestId'] as String?,
  );
}