Show / Hide Table of Contents

Class CfnDataflowEndpointGroup.EndpointDetailsProperty

The security details and endpoint information.

Inheritance
System.Object
CfnDataflowEndpointGroup.EndpointDetailsProperty
Implements
CfnDataflowEndpointGroup.IEndpointDetailsProperty
Namespace: Amazon.CDK.AWS.GroundStation
Assembly: Amazon.CDK.AWS.GroundStation.dll
Syntax (csharp)
public class EndpointDetailsProperty : Object, CfnDataflowEndpointGroup.IEndpointDetailsProperty
Syntax (vb)
Public Class EndpointDetailsProperty
    Inherits Object
    Implements CfnDataflowEndpointGroup.IEndpointDetailsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-endpointdetails.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.GroundStation;

var endpointDetailsProperty = new EndpointDetailsProperty {
    AwsGroundStationAgentEndpoint = new AwsGroundStationAgentEndpointProperty {
        AgentStatus = "agentStatus",
        AuditResults = "auditResults",
        EgressAddress = new ConnectionDetailsProperty {
            Mtu = 123,
            SocketAddress = new SocketAddressProperty {
                Name = "name",
                Port = 123
            }
        },
        IngressAddress = new RangedConnectionDetailsProperty {
            Mtu = 123,
            SocketAddress = new RangedSocketAddressProperty {
                Name = "name",
                PortRange = new IntegerRangeProperty {
                    Maximum = 123,
                    Minimum = 123
                }
            }
        },
        Name = "name"
    },
    Endpoint = new DataflowEndpointProperty {
        Address = new SocketAddressProperty {
            Name = "name",
            Port = 123
        },
        Mtu = 123,
        Name = "name"
    },
    SecurityDetails = new SecurityDetailsProperty {
        RoleArn = "roleArn",
        SecurityGroupIds = new [] { "securityGroupIds" },
        SubnetIds = new [] { "subnetIds" }
    }
};

Synopsis

Constructors

EndpointDetailsProperty()

Properties

AwsGroundStationAgentEndpoint

CfnDataflowEndpointGroup.EndpointDetailsProperty.AwsGroundStationAgentEndpoint.

Endpoint

Information about the endpoint such as name and the endpoint address.

SecurityDetails

The role ARN, and IDs for security groups and subnets.

Constructors

EndpointDetailsProperty()

public EndpointDetailsProperty()

Properties

AwsGroundStationAgentEndpoint

CfnDataflowEndpointGroup.EndpointDetailsProperty.AwsGroundStationAgentEndpoint.

public object AwsGroundStationAgentEndpoint { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-endpointdetails.html#cfn-groundstation-dataflowendpointgroup-endpointdetails-awsgroundstationagentendpoint

Endpoint

Information about the endpoint such as name and the endpoint address.

public object Endpoint { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-endpointdetails.html#cfn-groundstation-dataflowendpointgroup-endpointdetails-endpoint

SecurityDetails

The role ARN, and IDs for security groups and subnets.

public object SecurityDetails { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-endpointdetails.html#cfn-groundstation-dataflowendpointgroup-endpointdetails-securitydetails

Implements

CfnDataflowEndpointGroup.IEndpointDetailsProperty
Back to top Generated by DocFX