Show / Hide Table of Contents

Interface ICfnCrossAccountAttachmentProps

Properties for defining a CfnCrossAccountAttachment.

Namespace: Amazon.CDK.AWS.GlobalAccelerator
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnCrossAccountAttachmentProps
Syntax (vb)
Public Interface ICfnCrossAccountAttachmentProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.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.AWS.GlobalAccelerator;

             var cfnCrossAccountAttachmentProps = new CfnCrossAccountAttachmentProps {
                 Name = "name",

                 // the properties below are optional
                 Principals = new [] { "principals" },
                 Resources = new [] { new ResourceProperty {
                     Cidr = "cidr",
                     EndpointId = "endpointId",
                     Region = "region"
                 } },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Name

The name of the cross-account attachment.

Principals

The principals included in the cross-account attachment.

Resources

The resources included in the cross-account attachment.

Tags

Add tags for a cross-account attachment.

Properties

Name

The name of the cross-account attachment.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.html#cfn-globalaccelerator-crossaccountattachment-name

Principals

The principals included in the cross-account attachment.

string[]? Principals { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.html#cfn-globalaccelerator-crossaccountattachment-principals

Resources

The resources included in the cross-account attachment.

object? Resources { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.html#cfn-globalaccelerator-crossaccountattachment-resources

Tags

Add tags for a cross-account attachment.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

For more information, see Tagging in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .

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

Back to top Generated by DocFX