We recommend new projects start with resources from the AWS provider.
aws-native.groundstation.DataflowEndpointGroup
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
AWS Ground Station DataflowEndpointGroup schema for CloudFormation
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() => 
{
    var myDataflowEndpointGroup = new AwsNative.GroundStation.DataflowEndpointGroup("myDataflowEndpointGroup", new()
    {
        EndpointDetails = new[]
        {
            new AwsNative.GroundStation.Inputs.DataflowEndpointGroupEndpointDetailsArgs
            {
                SecurityDetails = new AwsNative.GroundStation.Inputs.DataflowEndpointGroupSecurityDetailsArgs
                {
                    SubnetIds = new[]
                    {
                        "subnet-6782e71e",
                    },
                    SecurityGroupIds = new[]
                    {
                        "sg-6979fe18",
                    },
                    RoleArn = "arn:aws:iam::012345678910:role/groundstation-service-role-AWSServiceRoleForAmazonGroundStation-EXAMPLEBQ4PI",
                },
                Endpoint = new AwsNative.GroundStation.Inputs.DataflowEndpointGroupDataflowEndpointArgs
                {
                    Name = "myEndpoint",
                    Address = new AwsNative.GroundStation.Inputs.DataflowEndpointGroupSocketAddressArgs
                    {
                        Name = "172.10.0.2",
                        Port = 44720,
                    },
                    Mtu = 1500,
                },
            },
        },
    });
});
package main
import (
	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/groundstation"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := groundstation.NewDataflowEndpointGroup(ctx, "myDataflowEndpointGroup", &groundstation.DataflowEndpointGroupArgs{
			EndpointDetails: groundstation.DataflowEndpointGroupEndpointDetailsArray{
				&groundstation.DataflowEndpointGroupEndpointDetailsArgs{
					SecurityDetails: &groundstation.DataflowEndpointGroupSecurityDetailsArgs{
						SubnetIds: pulumi.StringArray{
							pulumi.String("subnet-6782e71e"),
						},
						SecurityGroupIds: pulumi.StringArray{
							pulumi.String("sg-6979fe18"),
						},
						RoleArn: pulumi.String("arn:aws:iam::012345678910:role/groundstation-service-role-AWSServiceRoleForAmazonGroundStation-EXAMPLEBQ4PI"),
					},
					Endpoint: &groundstation.DataflowEndpointGroupDataflowEndpointArgs{
						Name: pulumi.String("myEndpoint"),
						Address: &groundstation.DataflowEndpointGroupSocketAddressArgs{
							Name: pulumi.String("172.10.0.2"),
							Port: pulumi.Int(44720),
						},
						Mtu: pulumi.Int(1500),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myDataflowEndpointGroup = new aws_native.groundstation.DataflowEndpointGroup("myDataflowEndpointGroup", {endpointDetails: [{
    securityDetails: {
        subnetIds: ["subnet-6782e71e"],
        securityGroupIds: ["sg-6979fe18"],
        roleArn: "arn:aws:iam::012345678910:role/groundstation-service-role-AWSServiceRoleForAmazonGroundStation-EXAMPLEBQ4PI",
    },
    endpoint: {
        name: "myEndpoint",
        address: {
            name: "172.10.0.2",
            port: 44720,
        },
        mtu: 1500,
    },
}]});
import pulumi
import pulumi_aws_native as aws_native
my_dataflow_endpoint_group = aws_native.groundstation.DataflowEndpointGroup("myDataflowEndpointGroup", endpoint_details=[{
    "security_details": {
        "subnet_ids": ["subnet-6782e71e"],
        "security_group_ids": ["sg-6979fe18"],
        "role_arn": "arn:aws:iam::012345678910:role/groundstation-service-role-AWSServiceRoleForAmazonGroundStation-EXAMPLEBQ4PI",
    },
    "endpoint": {
        "name": "myEndpoint",
        "address": {
            "name": "172.10.0.2",
            "port": 44720,
        },
        "mtu": 1500,
    },
}])
Coming soon!
Create DataflowEndpointGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataflowEndpointGroup(name: string, args: DataflowEndpointGroupArgs, opts?: CustomResourceOptions);@overload
def DataflowEndpointGroup(resource_name: str,
                          args: DataflowEndpointGroupArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def DataflowEndpointGroup(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          endpoint_details: Optional[Sequence[DataflowEndpointGroupEndpointDetailsArgs]] = None,
                          contact_post_pass_duration_seconds: Optional[int] = None,
                          contact_pre_pass_duration_seconds: Optional[int] = None,
                          tags: Optional[Sequence[_root_inputs.TagArgs]] = None)func NewDataflowEndpointGroup(ctx *Context, name string, args DataflowEndpointGroupArgs, opts ...ResourceOption) (*DataflowEndpointGroup, error)public DataflowEndpointGroup(string name, DataflowEndpointGroupArgs args, CustomResourceOptions? opts = null)
public DataflowEndpointGroup(String name, DataflowEndpointGroupArgs args)
public DataflowEndpointGroup(String name, DataflowEndpointGroupArgs args, CustomResourceOptions options)
type: aws-native:groundstation:DataflowEndpointGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DataflowEndpointGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DataflowEndpointGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DataflowEndpointGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataflowEndpointGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataflowEndpointGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DataflowEndpointGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DataflowEndpointGroup resource accepts the following input properties:
- EndpointDetails List<Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Endpoint Details> 
- List of Endpoint Details, containing address and port for each endpoint.
- ContactPost intPass Duration Seconds 
- 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.
- ContactPre intPass Duration Seconds 
- 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.
- 
List<Pulumi.Aws Native. Inputs. Tag> 
- Tags assigned to a resource.
- EndpointDetails []DataflowEndpoint Group Endpoint Details Args 
- List of Endpoint Details, containing address and port for each endpoint.
- ContactPost intPass Duration Seconds 
- 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.
- ContactPre intPass Duration Seconds 
- 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.
- 
TagArgs 
- Tags assigned to a resource.
- endpointDetails List<DataflowEndpoint Group Endpoint Details> 
- List of Endpoint Details, containing address and port for each endpoint.
- contactPost IntegerPass Duration Seconds 
- 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.
- contactPre IntegerPass Duration Seconds 
- 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.
- List<Tag>
- Tags assigned to a resource.
- endpointDetails DataflowEndpoint Group Endpoint Details[] 
- List of Endpoint Details, containing address and port for each endpoint.
- contactPost numberPass Duration Seconds 
- 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.
- contactPre numberPass Duration Seconds 
- 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.
- Tag[]
- Tags assigned to a resource.
- endpoint_details Sequence[DataflowEndpoint Group Endpoint Details Args] 
- List of Endpoint Details, containing address and port for each endpoint.
- contact_post_ intpass_ duration_ seconds 
- 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.
- contact_pre_ intpass_ duration_ seconds 
- 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.
- 
Sequence[TagArgs] 
- Tags assigned to a resource.
- endpointDetails List<Property Map>
- List of Endpoint Details, containing address and port for each endpoint.
- contactPost NumberPass Duration Seconds 
- 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.
- contactPre NumberPass Duration Seconds 
- 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.
- List<Property Map>
- Tags assigned to a resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataflowEndpointGroup resource produces the following output properties:
Supporting Types
DataflowEndpointGroupAgentStatus, DataflowEndpointGroupAgentStatusArgs          
- Success
- SUCCESS
- Failed
- FAILED
- Active
- ACTIVE
- Inactive
- INACTIVE
- DataflowEndpoint Group Agent Status Success 
- SUCCESS
- DataflowEndpoint Group Agent Status Failed 
- FAILED
- DataflowEndpoint Group Agent Status Active 
- ACTIVE
- DataflowEndpoint Group Agent Status Inactive 
- INACTIVE
- Success
- SUCCESS
- Failed
- FAILED
- Active
- ACTIVE
- Inactive
- INACTIVE
- Success
- SUCCESS
- Failed
- FAILED
- Active
- ACTIVE
- Inactive
- INACTIVE
- SUCCESS
- SUCCESS
- FAILED
- FAILED
- ACTIVE
- ACTIVE
- INACTIVE
- INACTIVE
- "SUCCESS"
- SUCCESS
- "FAILED"
- FAILED
- "ACTIVE"
- ACTIVE
- "INACTIVE"
- INACTIVE
DataflowEndpointGroupAuditResults, DataflowEndpointGroupAuditResultsArgs          
- Healthy
- HEALTHY
- Unhealthy
- UNHEALTHY
- DataflowEndpoint Group Audit Results Healthy 
- HEALTHY
- DataflowEndpoint Group Audit Results Unhealthy 
- UNHEALTHY
- Healthy
- HEALTHY
- Unhealthy
- UNHEALTHY
- Healthy
- HEALTHY
- Unhealthy
- UNHEALTHY
- HEALTHY
- HEALTHY
- UNHEALTHY
- UNHEALTHY
- "HEALTHY"
- HEALTHY
- "UNHEALTHY"
- UNHEALTHY
DataflowEndpointGroupAwsGroundStationAgentEndpoint, DataflowEndpointGroupAwsGroundStationAgentEndpointArgs                
- AgentStatus Pulumi.Aws Native. Ground Station. Dataflow Endpoint Group Agent Status 
- The status of AgentEndpoint.
- AuditResults Pulumi.Aws Native. Ground Station. Dataflow Endpoint Group Audit Results 
- The results of the audit.
- EgressAddress Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Connection Details 
- The egress address of AgentEndpoint.
- IngressAddress Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Ranged Connection Details 
- The ingress address of AgentEndpoint.
- Name string
- Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
- AgentStatus DataflowEndpoint Group Agent Status 
- The status of AgentEndpoint.
- AuditResults DataflowEndpoint Group Audit Results 
- The results of the audit.
- EgressAddress DataflowEndpoint Group Connection Details 
- The egress address of AgentEndpoint.
- IngressAddress DataflowEndpoint Group Ranged Connection Details 
- The ingress address of AgentEndpoint.
- Name string
- Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
- agentStatus DataflowEndpoint Group Agent Status 
- The status of AgentEndpoint.
- auditResults DataflowEndpoint Group Audit Results 
- The results of the audit.
- egressAddress DataflowEndpoint Group Connection Details 
- The egress address of AgentEndpoint.
- ingressAddress DataflowEndpoint Group Ranged Connection Details 
- The ingress address of AgentEndpoint.
- name String
- Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
- agentStatus DataflowEndpoint Group Agent Status 
- The status of AgentEndpoint.
- auditResults DataflowEndpoint Group Audit Results 
- The results of the audit.
- egressAddress DataflowEndpoint Group Connection Details 
- The egress address of AgentEndpoint.
- ingressAddress DataflowEndpoint Group Ranged Connection Details 
- The ingress address of AgentEndpoint.
- name string
- Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
- agent_status DataflowEndpoint Group Agent Status 
- The status of AgentEndpoint.
- audit_results DataflowEndpoint Group Audit Results 
- The results of the audit.
- egress_address DataflowEndpoint Group Connection Details 
- The egress address of AgentEndpoint.
- ingress_address DataflowEndpoint Group Ranged Connection Details 
- The ingress address of AgentEndpoint.
- name str
- Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
- agentStatus "SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE"
- The status of AgentEndpoint.
- auditResults "HEALTHY" | "UNHEALTHY"
- The results of the audit.
- egressAddress Property Map
- The egress address of AgentEndpoint.
- ingressAddress Property Map
- The ingress address of AgentEndpoint.
- name String
- Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.
DataflowEndpointGroupConnectionDetails, DataflowEndpointGroupConnectionDetailsArgs          
- Mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- SocketAddress Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Socket Address 
- A socket address.
- Mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- SocketAddress DataflowEndpoint Group Socket Address 
- A socket address.
- mtu Integer
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socketAddress DataflowEndpoint Group Socket Address 
- A socket address.
- mtu number
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socketAddress DataflowEndpoint Group Socket Address 
- A socket address.
- mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socket_address DataflowEndpoint Group Socket Address 
- A socket address.
- mtu Number
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socketAddress Property Map
- A socket address.
DataflowEndpointGroupDataflowEndpoint, DataflowEndpointGroupDataflowEndpointArgs          
- Address
Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Socket Address 
- The address and port of an endpoint.
- Mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
- Name string
- The endpoint name. - When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite. 
- Address
DataflowEndpoint Group Socket Address 
- The address and port of an endpoint.
- Mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
- Name string
- The endpoint name. - When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite. 
- address
DataflowEndpoint Group Socket Address 
- The address and port of an endpoint.
- mtu Integer
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
- name String
- The endpoint name. - When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite. 
- address
DataflowEndpoint Group Socket Address 
- The address and port of an endpoint.
- mtu number
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
- name string
- The endpoint name. - When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite. 
- address
DataflowEndpoint Group Socket Address 
- The address and port of an endpoint.
- mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
- name str
- The endpoint name. - When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite. 
- address Property Map
- The address and port of an endpoint.
- mtu Number
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
- name String
- The endpoint name. - When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite. 
DataflowEndpointGroupEndpointDetails, DataflowEndpointGroupEndpointDetailsArgs          
- AwsGround Pulumi.Station Agent Endpoint Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Aws Ground Station Agent Endpoint 
- An agent endpoint.
- Endpoint
Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Dataflow Endpoint 
- Information about the endpoint such as name and the endpoint address.
- SecurityDetails Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Security Details 
- The role ARN, and IDs for security groups and subnets.
- AwsGround DataflowStation Agent Endpoint Endpoint Group Aws Ground Station Agent Endpoint 
- An agent endpoint.
- Endpoint
DataflowEndpoint Group Dataflow Endpoint 
- Information about the endpoint such as name and the endpoint address.
- SecurityDetails DataflowEndpoint Group Security Details 
- The role ARN, and IDs for security groups and subnets.
- awsGround DataflowStation Agent Endpoint Endpoint Group Aws Ground Station Agent Endpoint 
- An agent endpoint.
- endpoint
DataflowEndpoint Group Dataflow Endpoint 
- Information about the endpoint such as name and the endpoint address.
- securityDetails DataflowEndpoint Group Security Details 
- The role ARN, and IDs for security groups and subnets.
- awsGround DataflowStation Agent Endpoint Endpoint Group Aws Ground Station Agent Endpoint 
- An agent endpoint.
- endpoint
DataflowEndpoint Group Dataflow Endpoint 
- Information about the endpoint such as name and the endpoint address.
- securityDetails DataflowEndpoint Group Security Details 
- The role ARN, and IDs for security groups and subnets.
- aws_ground_ Dataflowstation_ agent_ endpoint Endpoint Group Aws Ground Station Agent Endpoint 
- An agent endpoint.
- endpoint
DataflowEndpoint Group Dataflow Endpoint 
- Information about the endpoint such as name and the endpoint address.
- security_details DataflowEndpoint Group Security Details 
- The role ARN, and IDs for security groups and subnets.
- awsGround Property MapStation Agent Endpoint 
- An agent endpoint.
- endpoint Property Map
- Information about the endpoint such as name and the endpoint address.
- securityDetails Property Map
- The role ARN, and IDs for security groups and subnets.
DataflowEndpointGroupIntegerRange, DataflowEndpointGroupIntegerRangeArgs          
DataflowEndpointGroupRangedConnectionDetails, DataflowEndpointGroupRangedConnectionDetailsArgs            
- Mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- SocketAddress Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Ranged Socket Address 
- A ranged socket address.
- Mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- SocketAddress DataflowEndpoint Group Ranged Socket Address 
- A ranged socket address.
- mtu Integer
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socketAddress DataflowEndpoint Group Ranged Socket Address 
- A ranged socket address.
- mtu number
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socketAddress DataflowEndpoint Group Ranged Socket Address 
- A ranged socket address.
- mtu int
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socket_address DataflowEndpoint Group Ranged Socket Address 
- A ranged socket address.
- mtu Number
- Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
- socketAddress Property Map
- A ranged socket address.
DataflowEndpointGroupRangedSocketAddress, DataflowEndpointGroupRangedSocketAddressArgs            
- Name string
- IPv4 socket address.
- PortRange Pulumi.Aws Native. Ground Station. Inputs. Dataflow Endpoint Group Integer Range 
- Port range of a socket address.
- Name string
- IPv4 socket address.
- PortRange DataflowEndpoint Group Integer Range 
- Port range of a socket address.
- name String
- IPv4 socket address.
- portRange DataflowEndpoint Group Integer Range 
- Port range of a socket address.
- name string
- IPv4 socket address.
- portRange DataflowEndpoint Group Integer Range 
- Port range of a socket address.
- name str
- IPv4 socket address.
- port_range DataflowEndpoint Group Integer Range 
- Port range of a socket address.
- name String
- IPv4 socket address.
- portRange Property Map
- Port range of a socket address.
DataflowEndpointGroupSecurityDetails, DataflowEndpointGroupSecurityDetailsArgs          
- RoleArn string
- The ARN of a role which Ground Station has permission to assume, such as - arn:aws:iam::1234567890:role/DataDeliveryServiceRole.- Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact. 
- SecurityGroup List<string>Ids 
- The security group Ids of the security role, such as sg-1234567890abcdef0.
- SubnetIds List<string>
- The subnet Ids of the security details, such as subnet-12345678.
- RoleArn string
- The ARN of a role which Ground Station has permission to assume, such as - arn:aws:iam::1234567890:role/DataDeliveryServiceRole.- Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact. 
- SecurityGroup []stringIds 
- The security group Ids of the security role, such as sg-1234567890abcdef0.
- SubnetIds []string
- The subnet Ids of the security details, such as subnet-12345678.
- roleArn String
- The ARN of a role which Ground Station has permission to assume, such as - arn:aws:iam::1234567890:role/DataDeliveryServiceRole.- Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact. 
- securityGroup List<String>Ids 
- The security group Ids of the security role, such as sg-1234567890abcdef0.
- subnetIds List<String>
- The subnet Ids of the security details, such as subnet-12345678.
- roleArn string
- The ARN of a role which Ground Station has permission to assume, such as - arn:aws:iam::1234567890:role/DataDeliveryServiceRole.- Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact. 
- securityGroup string[]Ids 
- The security group Ids of the security role, such as sg-1234567890abcdef0.
- subnetIds string[]
- The subnet Ids of the security details, such as subnet-12345678.
- role_arn str
- The ARN of a role which Ground Station has permission to assume, such as - arn:aws:iam::1234567890:role/DataDeliveryServiceRole.- Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact. 
- security_group_ Sequence[str]ids 
- The security group Ids of the security role, such as sg-1234567890abcdef0.
- subnet_ids Sequence[str]
- The subnet Ids of the security details, such as subnet-12345678.
- roleArn String
- The ARN of a role which Ground Station has permission to assume, such as - arn:aws:iam::1234567890:role/DataDeliveryServiceRole.- Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact. 
- securityGroup List<String>Ids 
- The security group Ids of the security role, such as sg-1234567890abcdef0.
- subnetIds List<String>
- The subnet Ids of the security details, such as subnet-12345678.
DataflowEndpointGroupSocketAddress, DataflowEndpointGroupSocketAddressArgs          
Tag, TagArgs  
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.