Interface NetworkTelemetry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NetworkTelemetry.Builder,NetworkTelemetry>,SdkBuilder<NetworkTelemetry.Builder,NetworkTelemetry>,SdkPojo
- Enclosing class:
- NetworkTelemetry
public static interface NetworkTelemetry.Builder extends SdkPojo, CopyableBuilder<NetworkTelemetry.Builder,NetworkTelemetry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description NetworkTelemetry.BuilderaccountId(String accountId)The Amazon Web Services account ID.NetworkTelemetry.Builderaddress(String address)The address.NetworkTelemetry.BuilderawsRegion(String awsRegion)The Amazon Web Services Region.NetworkTelemetry.BuildercoreNetworkId(String coreNetworkId)The ID of a core network.default NetworkTelemetry.Builderhealth(Consumer<ConnectionHealth.Builder> health)The connection health.NetworkTelemetry.Builderhealth(ConnectionHealth health)The connection health.NetworkTelemetry.BuilderregisteredGatewayArn(String registeredGatewayArn)The ARN of the gateway.NetworkTelemetry.BuilderresourceArn(String resourceArn)The ARN of the resource.NetworkTelemetry.BuilderresourceId(String resourceId)The ID of the resource.NetworkTelemetry.BuilderresourceType(String resourceType)The resource type.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
registeredGatewayArn
NetworkTelemetry.Builder registeredGatewayArn(String registeredGatewayArn)
The ARN of the gateway.
- Parameters:
registeredGatewayArn- The ARN of the gateway.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
coreNetworkId
NetworkTelemetry.Builder coreNetworkId(String coreNetworkId)
The ID of a core network.
- Parameters:
coreNetworkId- The ID of a core network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
awsRegion
NetworkTelemetry.Builder awsRegion(String awsRegion)
The Amazon Web Services Region.
- Parameters:
awsRegion- The Amazon Web Services Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountId
NetworkTelemetry.Builder accountId(String accountId)
The Amazon Web Services account ID.
- Parameters:
accountId- The Amazon Web Services account ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceType
NetworkTelemetry.Builder resourceType(String resourceType)
The resource type.
- Parameters:
resourceType- The resource type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceId
NetworkTelemetry.Builder resourceId(String resourceId)
The ID of the resource.
- Parameters:
resourceId- The ID of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceArn
NetworkTelemetry.Builder resourceArn(String resourceArn)
The ARN of the resource.
- Parameters:
resourceArn- The ARN of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
address
NetworkTelemetry.Builder address(String address)
The address.
- Parameters:
address- The address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
health
NetworkTelemetry.Builder health(ConnectionHealth health)
The connection health.
- Parameters:
health- The connection health.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
health
default NetworkTelemetry.Builder health(Consumer<ConnectionHealth.Builder> health)
The connection health.
This is a convenience method that creates an instance of theConnectionHealth.Builderavoiding the need to create one manually viaConnectionHealth.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohealth(ConnectionHealth).- Parameters:
health- a consumer that will call methods onConnectionHealth.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
health(ConnectionHealth)
-
-