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

CreateNetworkInput

import type { CreateNetworkInput } from "https://aws-api.deno.dev/v0.3/services/managedblockchain.ts?docs=full";
interface CreateNetworkInput {
ClientRequestToken: string;
Description?: string | null;
Framework: Framework;
FrameworkConfiguration?: NetworkFrameworkConfiguration | null;
FrameworkVersion: string;
MemberConfiguration: MemberConfiguration;
Name: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
VotingPolicy: VotingPolicy;
}

§Properties

§
ClientRequestToken: string
[src]

A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an AWS SDK or the AWS CLI.

§
Description?: string | null
[src]

An optional description for the network.

§
Framework: Framework
[src]

The blockchain framework that the network uses.

§
FrameworkConfiguration?: NetworkFrameworkConfiguration | null
[src]

Configuration properties of the blockchain framework relevant to the network configuration.

§
FrameworkVersion: string
[src]

The version of the blockchain framework that the network uses.

§
MemberConfiguration: MemberConfiguration
[src]

Configuration properties for the first member within the network.

§
Name: string
[src]

The name of the network.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Tags to assign to the network. Each tag consists of a key and optional value.

When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.

For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide, or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide.

§
VotingPolicy: VotingPolicy
[src]

The voting rules used by the network to determine if a proposal is approved.