1. Packages
  2. AWS Native
  3. API Docs
  4. groundstation
  5. DataflowEndpointGroup

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.100.0 published on Wednesday, Mar 27, 2024 by Pulumi

aws-native.groundstation.DataflowEndpointGroup

Explore with Pulumi AI

aws-native logo

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.100.0 published on Wednesday, Mar 27, 2024 by Pulumi

    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 pulumi
    import pulumi_aws_native as aws_native
    
    my_dataflow_endpoint_group = aws_native.groundstation.DataflowEndpointGroup("myDataflowEndpointGroup", endpoint_details=[aws_native.groundstation.DataflowEndpointGroupEndpointDetailsArgs(
        security_details=aws_native.groundstation.DataflowEndpointGroupSecurityDetailsArgs(
            subnet_ids=["subnet-6782e71e"],
            security_group_ids=["sg-6979fe18"],
            role_arn="arn:aws:iam::012345678910:role/groundstation-service-role-AWSServiceRoleForAmazonGroundStation-EXAMPLEBQ4PI",
        ),
        endpoint=aws_native.groundstation.DataflowEndpointGroupDataflowEndpointArgs(
            name="myEndpoint",
            address=aws_native.groundstation.DataflowEndpointGroupSocketAddressArgs(
                name="172.10.0.2",
                port=44720,
            ),
            mtu=1500,
        ),
    )])
    
    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,
        },
    }]});
    

    Coming soon!

    Create DataflowEndpointGroup Resource

    new DataflowEndpointGroup(name: string, args: DataflowEndpointGroupArgs, opts?: CustomResourceOptions);
    @overload
    def DataflowEndpointGroup(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              contact_post_pass_duration_seconds: Optional[int] = None,
                              contact_pre_pass_duration_seconds: Optional[int] = None,
                              endpoint_details: Optional[Sequence[DataflowEndpointGroupEndpointDetailsArgs]] = None,
                              tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
    @overload
    def DataflowEndpointGroup(resource_name: str,
                              args: DataflowEndpointGroupArgs,
                              opts: Optional[ResourceOptions] = 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.
    
    
    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

    The DataflowEndpointGroup resource accepts the following input properties:

    EndpointDetails List<Pulumi.AwsNative.GroundStation.Inputs.DataflowEndpointGroupEndpointDetails>
    ContactPostPassDurationSeconds int
    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.
    ContactPrePassDurationSeconds int
    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.
    Tags List<Pulumi.AwsNative.Inputs.Tag>
    EndpointDetails []DataflowEndpointGroupEndpointDetailsArgs
    ContactPostPassDurationSeconds int
    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.
    ContactPrePassDurationSeconds int
    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.
    Tags TagArgs
    endpointDetails List<DataflowEndpointGroupEndpointDetails>
    contactPostPassDurationSeconds Integer
    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.
    contactPrePassDurationSeconds Integer
    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.
    tags List<Tag>
    endpointDetails DataflowEndpointGroupEndpointDetails[]
    contactPostPassDurationSeconds number
    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.
    contactPrePassDurationSeconds number
    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.
    tags Tag[]
    endpoint_details Sequence[DataflowEndpointGroupEndpointDetailsArgs]
    contact_post_pass_duration_seconds int
    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_pass_duration_seconds int
    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.
    tags TagArgs]
    endpointDetails List<Property Map>
    contactPostPassDurationSeconds Number
    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.
    contactPrePassDurationSeconds Number
    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.
    tags List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DataflowEndpointGroup resource produces the following output properties:

    Arn string
    AwsId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Arn string
    AwsId string
    Id string
    The provider-assigned unique ID for this managed resource.
    arn String
    awsId String
    id String
    The provider-assigned unique ID for this managed resource.
    arn string
    awsId string
    id string
    The provider-assigned unique ID for this managed resource.
    arn str
    aws_id str
    id str
    The provider-assigned unique ID for this managed resource.
    arn String
    awsId String
    id String
    The provider-assigned unique ID for this managed resource.

    Supporting Types

    DataflowEndpointGroupAgentStatus, DataflowEndpointGroupAgentStatusArgs

    Success
    SUCCESS
    Failed
    FAILED
    Active
    ACTIVE
    Inactive
    INACTIVE
    DataflowEndpointGroupAgentStatusSuccess
    SUCCESS
    DataflowEndpointGroupAgentStatusFailed
    FAILED
    DataflowEndpointGroupAgentStatusActive
    ACTIVE
    DataflowEndpointGroupAgentStatusInactive
    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
    DataflowEndpointGroupAuditResultsHealthy
    HEALTHY
    DataflowEndpointGroupAuditResultsUnhealthy
    UNHEALTHY
    Healthy
    HEALTHY
    Unhealthy
    UNHEALTHY
    Healthy
    HEALTHY
    Unhealthy
    UNHEALTHY
    HEALTHY
    HEALTHY
    UNHEALTHY
    UNHEALTHY
    "HEALTHY"
    HEALTHY
    "UNHEALTHY"
    UNHEALTHY

    DataflowEndpointGroupAwsGroundStationAgentEndpoint, DataflowEndpointGroupAwsGroundStationAgentEndpointArgs

    DataflowEndpointGroupConnectionDetails, DataflowEndpointGroupConnectionDetailsArgs

    Mtu int
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    SocketAddress Pulumi.AwsNative.GroundStation.Inputs.DataflowEndpointGroupSocketAddress
    Mtu int
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    SocketAddress DataflowEndpointGroupSocketAddress
    mtu Integer
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socketAddress DataflowEndpointGroupSocketAddress
    mtu number
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socketAddress DataflowEndpointGroupSocketAddress
    mtu int
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socket_address DataflowEndpointGroupSocketAddress
    mtu Number
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socketAddress Property Map

    DataflowEndpointGroupDataflowEndpoint, DataflowEndpointGroupDataflowEndpointArgs

    DataflowEndpointGroupEndpointDetails, DataflowEndpointGroupEndpointDetailsArgs

    DataflowEndpointGroupIntegerRange, DataflowEndpointGroupIntegerRangeArgs

    Maximum int
    A maximum value.
    Minimum int
    A minimum value.
    Maximum int
    A maximum value.
    Minimum int
    A minimum value.
    maximum Integer
    A maximum value.
    minimum Integer
    A minimum value.
    maximum number
    A maximum value.
    minimum number
    A minimum value.
    maximum int
    A maximum value.
    minimum int
    A minimum value.
    maximum Number
    A maximum value.
    minimum Number
    A minimum value.

    DataflowEndpointGroupRangedConnectionDetails, DataflowEndpointGroupRangedConnectionDetailsArgs

    Mtu int
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    SocketAddress Pulumi.AwsNative.GroundStation.Inputs.DataflowEndpointGroupRangedSocketAddress
    Mtu int
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    SocketAddress DataflowEndpointGroupRangedSocketAddress
    mtu Integer
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socketAddress DataflowEndpointGroupRangedSocketAddress
    mtu number
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socketAddress DataflowEndpointGroupRangedSocketAddress
    mtu int
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socket_address DataflowEndpointGroupRangedSocketAddress
    mtu Number
    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
    socketAddress Property Map

    DataflowEndpointGroupRangedSocketAddress, DataflowEndpointGroupRangedSocketAddressArgs

    Name string
    IPv4 socket address.
    PortRange Pulumi.AwsNative.GroundStation.Inputs.DataflowEndpointGroupIntegerRange
    Port range of a socket address.
    Name string
    IPv4 socket address.
    PortRange DataflowEndpointGroupIntegerRange
    Port range of a socket address.
    name String
    IPv4 socket address.
    portRange DataflowEndpointGroupIntegerRange
    Port range of a socket address.
    name string
    IPv4 socket address.
    portRange DataflowEndpointGroupIntegerRange
    Port range of a socket address.
    name str
    IPv4 socket address.
    port_range DataflowEndpointGroupIntegerRange
    Port range of a socket address.
    name String
    IPv4 socket address.
    portRange Property Map
    Port range of a socket address.

    DataflowEndpointGroupSecurityDetails, DataflowEndpointGroupSecurityDetailsArgs

    RoleArn string
    SecurityGroupIds List<string>
    SubnetIds List<string>
    RoleArn string
    SecurityGroupIds []string
    SubnetIds []string
    roleArn String
    securityGroupIds List<String>
    subnetIds List<String>
    roleArn string
    securityGroupIds string[]
    subnetIds string[]
    role_arn str
    security_group_ids Sequence[str]
    subnet_ids Sequence[str]
    roleArn String
    securityGroupIds List<String>
    subnetIds List<String>

    DataflowEndpointGroupSocketAddress, DataflowEndpointGroupSocketAddressArgs

    Name string
    Port int
    Name string
    Port int
    name String
    port Integer
    name string
    port number
    name str
    port int
    name String
    port Number

    Tag, TagArgs

    Key string
    The key name of the tag
    Value string
    The value of the tag
    Key string
    The key name of the tag
    Value string
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key str
    The key name of the tag
    value str
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo

    AWS Native is in preview. AWS Classic is fully supported.

    AWS Native v0.100.0 published on Wednesday, Mar 27, 2024 by Pulumi