package awsgroundstation import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnDataflowEndpointGroup`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnDataflowEndpointGroupProps := &CfnDataflowEndpointGroupProps{ // EndpointDetails: []interface{}{ // &EndpointDetailsProperty{ // AwsGroundStationAgentEndpoint: &AwsGroundStationAgentEndpointProperty{ // AgentStatus: jsii.String("agentStatus"), // AuditResults: jsii.String("auditResults"), // EgressAddress: &ConnectionDetailsProperty{ // Mtu: jsii.Number(123), // SocketAddress: &SocketAddressProperty{ // Name: jsii.String("name"), // Port: jsii.Number(123), // }, // }, // IngressAddress: &RangedConnectionDetailsProperty{ // Mtu: jsii.Number(123), // SocketAddress: &RangedSocketAddressProperty{ // Name: jsii.String("name"), // PortRange: &IntegerRangeProperty{ // Maximum: jsii.Number(123), // Minimum: jsii.Number(123), // }, // }, // }, // Name: jsii.String("name"), // }, // Endpoint: &DataflowEndpointProperty{ // Address: &SocketAddressProperty{ // Name: jsii.String("name"), // Port: jsii.Number(123), // }, // Mtu: jsii.Number(123), // Name: jsii.String("name"), // }, // SecurityDetails: &SecurityDetailsProperty{ // RoleArn: jsii.String("roleArn"), // SecurityGroupIds: []*string{ // jsii.String("securityGroupIds"), // }, // SubnetIds: []*string{ // jsii.String("subnetIds"), // }, // }, // }, // }, // // // the properties below are optional // ContactPostPassDurationSeconds: jsii.Number(123), // ContactPrePassDurationSeconds: jsii.Number(123), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html // type CfnDataflowEndpointGroupProps struct { // List of Endpoint Details, containing address and port for each endpoint. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-endpointdetails // EndpointDetails interface{} `field:"required" json:"endpointDetails" yaml:"endpointDetails"` // Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a `POSTPASS` state. // // A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the `POSTPASS` state. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-contactpostpassdurationseconds // ContactPostPassDurationSeconds *float64 `field:"optional" json:"contactPostPassDurationSeconds" yaml:"contactPostPassDurationSeconds"` // Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a `PREPASS` state. // // A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the `PREPASS` state. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-contactprepassdurationseconds // ContactPrePassDurationSeconds *float64 `field:"optional" json:"contactPrePassDurationSeconds" yaml:"contactPrePassDurationSeconds"` // Tags assigned to a resource. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }