@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.679Z") @Stability(value=Stable) public class CfnDataflowEndpointGroup extends CfnResource implements IInspectable
Creates a Dataflow Endpoint Group request.
Dataflow endpoint groups contain a list of endpoints. When the name of a dataflow endpoint group is specified in a mission profile, the Ground Station service will connect to the endpoints and flow data during a contact.
For more information about dataflow endpoint groups, see Dataflow Endpoint Groups .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.groundstation.*;
CfnDataflowEndpointGroup cfnDataflowEndpointGroup = CfnDataflowEndpointGroup.Builder.create(this, "MyCfnDataflowEndpointGroup")
.endpointDetails(List.of(EndpointDetailsProperty.builder()
.endpoint(DataflowEndpointProperty.builder()
.address(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
.mtu(123)
.name("name")
.build())
.securityDetails(SecurityDetailsProperty.builder()
.roleArn("roleArn")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build())
.build()))
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnDataflowEndpointGroup.Builder
A fluent builder for
CfnDataflowEndpointGroup. |
static interface |
CfnDataflowEndpointGroup.DataflowEndpointProperty
Contains information such as socket address and name that defines an endpoint.
|
static interface |
CfnDataflowEndpointGroup.EndpointDetailsProperty
The security details and endpoint information.
|
static interface |
CfnDataflowEndpointGroup.SecurityDetailsProperty
Information about IAM roles, subnets, and security groups needed for this DataflowEndpointGroup.
|
static interface |
CfnDataflowEndpointGroup.SocketAddressProperty
The address of the endpoint, such as `192.168.1.1` .
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnDataflowEndpointGroup(software.constructs.Construct scope,
String id,
CfnDataflowEndpointGroupProps props)
Create a new `AWS::GroundStation::DataflowEndpointGroup`.
|
protected |
CfnDataflowEndpointGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnDataflowEndpointGroup(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrArn()
The ARN of the dataflow endpoint group, such as `arn:aws:groundstation:us-east-2:1234567890:dataflow-endpoint-group/9940bf3b-d2ba-427e-9906-842b5e5d2296` .
|
String |
getAttrId()
UUID of a dataflow endpoint group.
|
protected Map<String,Object> |
getCfnProperties() |
Object |
getEndpointDetails()
List of Endpoint Details, containing address and port for each endpoint.
|
TagManager |
getTags()
Tags assigned to a resource.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setEndpointDetails(IResolvable value)
List of Endpoint Details, containing address and port for each endpoint.
|
void |
setEndpointDetails(List<Object> value)
List of Endpoint Details, containing address and port for each endpoint.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnDataflowEndpointGroup(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnDataflowEndpointGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnDataflowEndpointGroup(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnDataflowEndpointGroupProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull public String getAttrId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
@Stability(value=Stable) @NotNull public Object getEndpointDetails()
@Stability(value=Stable)
public void setEndpointDetails(@NotNull
IResolvable value)
Copyright © 2022. All rights reserved.