Show / Hide Table of Contents

Class CfnCoreNetworkMixinProps

Properties for CfnCoreNetworkPropsMixin.

Inheritance
object
CfnCoreNetworkMixinProps
Implements
ICfnCoreNetworkMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCoreNetworkMixinProps : ICfnCoreNetworkMixinProps
Syntax (vb)
Public Class CfnCoreNetworkMixinProps Implements ICfnCoreNetworkMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetwork.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.Mixins.Preview.AWS.NetworkManager.Mixins;

             var policyDocument;

             var cfnCoreNetworkMixinProps = new CfnCoreNetworkMixinProps {
                 Description = "description",
                 GlobalNetworkId = "globalNetworkId",
                 PolicyDocument = policyDocument,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnCoreNetworkMixinProps()

Properties for CfnCoreNetworkPropsMixin.

Properties

Description

The description of a core network.

GlobalNetworkId

The ID of the global network that your core network is a part of.

PolicyDocument

Describes a core network policy. For more information, see Core network policies .

Tags

The list of key-value tags associated with a core network.

Constructors

CfnCoreNetworkMixinProps()

Properties for CfnCoreNetworkPropsMixin.

public CfnCoreNetworkMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetwork.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.Mixins.Preview.AWS.NetworkManager.Mixins;

             var policyDocument;

             var cfnCoreNetworkMixinProps = new CfnCoreNetworkMixinProps {
                 Description = "description",
                 GlobalNetworkId = "globalNetworkId",
                 PolicyDocument = policyDocument,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

The description of a core network.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetwork.html#cfn-networkmanager-corenetwork-description

GlobalNetworkId

The ID of the global network that your core network is a part of.

public string? GlobalNetworkId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetwork.html#cfn-networkmanager-corenetwork-globalnetworkid

PolicyDocument

Describes a core network policy. For more information, see Core network policies .

public object? PolicyDocument { get; set; }
Property Value

object

Remarks

If you update the policy document, CloudFormation will apply the core network change set generated from the updated policy document, and then set it as the LIVE policy.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetwork.html#cfn-networkmanager-corenetwork-policydocument

Tags

The list of key-value tags associated with a core network.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetwork.html#cfn-networkmanager-corenetwork-tags

Implements

ICfnCoreNetworkMixinProps
Back to top Generated by DocFX