Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProposalSummary

import type { ProposalSummary } from "https://aws-api.deno.dev/v0.3/services/managedblockchain.ts?docs=full";

Properties of a proposal.

Applies only to Hyperledger Fabric.

interface ProposalSummary {
Arn?: string | null;
CreationDate?: Date | number | null;
Description?: string | null;
ExpirationDate?: Date | number | null;
ProposalId?: string | null;
ProposedByMemberId?: string | null;
ProposedByMemberName?: string | null;
Status?: ProposalStatus | null;
}

§Properties

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) of the proposal. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.

§
CreationDate?: Date | number | null
[src]

The date and time that the proposal was created.

§
Description?: string | null
[src]

The description of the proposal.

§
ExpirationDate?: Date | number | null
[src]

The date and time that the proposal expires. This is the CreationDate plus the ProposalDurationInHours that is specified in the ProposalThresholdPolicy. After this date and time, if members have not cast enough votes to determine the outcome according to the voting policy, the proposal is EXPIRED and Actions are not carried out.

§
ProposalId?: string | null
[src]

The unique identifier of the proposal.

§
ProposedByMemberId?: string | null
[src]

The unique identifier of the member that created the proposal.

§
ProposedByMemberName?: string | null
[src]

The name of the member that created the proposal.

§
Status?: ProposalStatus | null
[src]

The status of the proposal. Values are as follows:

  • IN_PROGRESS - The proposal is active and open for member voting.
  • APPROVED - The proposal was approved with sufficient YES votes among members according to the VotingPolicy specified for the Network. The specified proposal actions are carried out.
  • REJECTED - The proposal was rejected with insufficient YES votes among members according to the VotingPolicy specified for the Network. The specified ProposalActions are not carried out.
  • EXPIRED - Members did not cast the number of votes required to determine the proposal outcome before the proposal expired. The specified ProposalActions are not carried out.
  • ACTION_FAILED - One or more of the specified ProposalActions in a proposal that was approved could not be completed because of an error.