Interface CfnWirelessGatewayProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWirelessGatewayProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:01.053Z")
@Stability(Stable)
public interface CfnWirelessGatewayProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWirelessGateway
.
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.iotwireless.*; CfnWirelessGatewayProps cfnWirelessGatewayProps = CfnWirelessGatewayProps.builder() .loRaWan(LoRaWANGatewayProperty.builder() .gatewayEui("gatewayEui") .rfRegion("rfRegion") .build()) // the properties below are optional .description("description") .lastUplinkReceivedAt("lastUplinkReceivedAt") .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .thingArn("thingArn") .thingName("thingName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWirelessGatewayProps
static final class
An implementation forCfnWirelessGatewayProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the new resource.default String
The date and time when the most recent uplink was received.The gateway configuration information to use to create the wireless gateway.default String
getName()
The name of the new resource.getTags()
The tags are an array of key-value pairs to attach to the specified resource.default String
The ARN of the thing to associate with the wireless gateway.default String
The name of the thing associated with the wireless gateway.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoRaWan
The gateway configuration information to use to create the wireless gateway.- See Also:
-
getDescription
The description of the new resource.The maximum length is 2048 characters.
- See Also:
-
getLastUplinkReceivedAt
The date and time when the most recent uplink was received.- See Also:
-
getName
The name of the new resource.- See Also:
-
getTags
The tags are an array of key-value pairs to attach to the specified resource.Tags can have a minimum of 0 and a maximum of 50 items.
- See Also:
-
getThingArn
The ARN of the thing to associate with the wireless gateway.- See Also:
-
getThingName
The name of the thing associated with the wireless gateway.The value is empty if a thing isn't associated with the gateway.
- See Also:
-
builder
- Returns:
- a
CfnWirelessGatewayProps.Builder
ofCfnWirelessGatewayProps
-