Show / Hide Table of Contents

Interface ICfnMemberMixinProps

Properties for CfnMemberPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ManagedBlockchain
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnMemberMixinProps
Syntax (vb)
Public Interface ICfnMemberMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.ManagedBlockchain;

             var cfnMemberMixinProps = new CfnMemberMixinProps {
                 InvitationId = "invitationId",
                 MemberConfiguration = new MemberConfigurationProperty {
                     Description = "description",
                     MemberFrameworkConfiguration = new MemberFrameworkConfigurationProperty {
                         MemberFabricConfiguration = new MemberFabricConfigurationProperty {
                             AdminPassword = "adminPassword",
                             AdminUsername = "adminUsername"
                         }
                     },
                     Name = "name"
                 },
                 NetworkConfiguration = new NetworkConfigurationProperty {
                     Description = "description",
                     Framework = "framework",
                     FrameworkVersion = "frameworkVersion",
                     Name = "name",
                     NetworkFrameworkConfiguration = new NetworkFrameworkConfigurationProperty {
                         NetworkFabricConfiguration = new NetworkFabricConfigurationProperty {
                             Edition = "edition"
                         }
                     },
                     VotingPolicy = new VotingPolicyProperty {
                         ApprovalThresholdPolicy = new ApprovalThresholdPolicyProperty {
                             ProposalDurationInHours = 123,
                             ThresholdComparator = "thresholdComparator",
                             ThresholdPercentage = 123
                         }
                     }
                 },
                 NetworkId = "networkId"
             };

Synopsis

Properties

InvitationId

The unique identifier of the invitation to join the network sent to the account that creates the member.

MemberConfiguration

Configuration properties of the member.

NetworkConfiguration

Configuration properties of the network to which the member belongs.

NetworkId

The unique identifier of the network to which the member belongs.

Properties

InvitationId

The unique identifier of the invitation to join the network sent to the account that creates the member.

string? InvitationId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-invitationid

MemberConfiguration

Configuration properties of the member.

object? MemberConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-memberconfiguration

Type union: either IResolvable or CfnMemberPropsMixin.IMemberConfigurationProperty

NetworkConfiguration

Configuration properties of the network to which the member belongs.

object? NetworkConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkconfiguration

Type union: either IResolvable or CfnMemberPropsMixin.INetworkConfigurationProperty

NetworkId

The unique identifier of the network to which the member belongs.

string? NetworkId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-managedblockchain-member.html#cfn-managedblockchain-member-networkid

Back to top Generated by DocFX