@Stability(value=Stable)
public static interface CfnMember.NetworkConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.managedblockchain.*;
NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder()
.framework("framework")
.frameworkVersion("frameworkVersion")
.name("name")
.votingPolicy(VotingPolicyProperty.builder()
.approvalThresholdPolicy(ApprovalThresholdPolicyProperty.builder()
.proposalDurationInHours(123)
.thresholdComparator("thresholdComparator")
.thresholdPercentage(123)
.build())
.build())
// the properties below are optional
.description("description")
.networkFrameworkConfiguration(NetworkFrameworkConfigurationProperty.builder()
.networkFabricConfiguration(NetworkFabricConfigurationProperty.builder()
.edition("edition")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMember.NetworkConfigurationProperty.Builder
A builder for
CfnMember.NetworkConfigurationProperty |
static class |
CfnMember.NetworkConfigurationProperty.Jsii$Proxy
An implementation for
CfnMember.NetworkConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMember.NetworkConfigurationProperty.Builder |
builder() |
default String |
getDescription()
Attributes of the blockchain framework for the network.
|
String |
getFramework()
The blockchain framework that the network uses.
|
String |
getFrameworkVersion()
The version of the blockchain framework that the network uses.
|
String |
getName()
The name of the network.
|
default Object |
getNetworkFrameworkConfiguration()
Configuration properties relevant to the network for the blockchain framework that the network uses.
|
Object |
getVotingPolicy()
The voting rules for the network to decide if a proposal is accepted.
|
@Stability(value=Stable) @NotNull String getFramework()
@Stability(value=Stable) @NotNull String getFrameworkVersion()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getVotingPolicy()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getNetworkFrameworkConfiguration()
@Stability(value=Stable) static CfnMember.NetworkConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.