AWS Native v0.54.0, Mar 21 23
AWS Native v0.54.0, Mar 21 23
aws-native.groundstation.DataflowEndpointGroup
AWS Ground Station DataflowEndpointGroup schema for CloudFormation
Example Usage
Example
using System.Collections.Generic;
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,
},
},
},
});
});
Coming soon!
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[DataflowEndpointGroupTagArgs]] = 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:
Outputs
All input properties are implicitly available as output properties. Additionally, the DataflowEndpointGroup resource produces the following output properties:
Supporting Types
DataflowEndpointGroupDataflowEndpoint
- Address
Dataflow
Endpoint Group Socket Address - Mtu int
- Name string
- address
Dataflow
Endpoint Group Socket Address - mtu Integer
- name String
- address
Dataflow
Endpoint Group Socket Address - mtu number
- name string
- address Property Map
- mtu Number
- name String
DataflowEndpointGroupEndpointDetails
DataflowEndpointGroupSecurityDetails
- Role
Arn string - Security
Group List<string>Ids - Subnet
Ids List<string>
- Role
Arn string - Security
Group []stringIds - Subnet
Ids []string
- role
Arn String - security
Group List<String>Ids - subnet
Ids List<String>
- role
Arn string - security
Group string[]Ids - subnet
Ids string[]
- role_
arn str - security_
group_ Sequence[str]ids - subnet_
ids Sequence[str]
- role
Arn String - security
Group List<String>Ids - subnet
Ids List<String>
DataflowEndpointGroupSocketAddress
DataflowEndpointGroupTag
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0