toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DirectConnectGatewayAssociationProposalState.requested:
      return 'requested';
    case DirectConnectGatewayAssociationProposalState.accepted:
      return 'accepted';
    case DirectConnectGatewayAssociationProposalState.deleted:
      return 'deleted';
  }
}