CfnWirelessGatewayProps
- class aws_cdk.aws_iotwireless.CfnWirelessGatewayProps(*, lo_ra_wan, description=None, last_uplink_received_at=None, name=None, tags=None, thing_arn=None, thing_name=None)
Bases:
object
Properties for defining a
CfnWirelessGateway
.- Parameters:
lo_ra_wan (
Union
[IResolvable
,LoRaWANGatewayProperty
,Dict
[str
,Any
]]) – The gateway configuration information to use to create the wireless gateway.description (
Optional
[str
]) – The description of the new resource. The maximum length is 2048 characters.last_uplink_received_at (
Optional
[str
]) – The date and time when the most recent uplink was received.name (
Optional
[str
]) – The name of the new resource.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – 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.thing_arn (
Optional
[str
]) – The ARN of the thing to associate with the wireless gateway.thing_name (
Optional
[str
]) – The name of the thing associated with the wireless gateway. The value is empty if a thing isn’t associated with the gateway.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_iotwireless as iotwireless cfn_wireless_gateway_props = iotwireless.CfnWirelessGatewayProps( lo_ra_wan=iotwireless.CfnWirelessGateway.LoRaWANGatewayProperty( gateway_eui="gatewayEui", rf_region="rfRegion" ), # the properties below are optional description="description", last_uplink_received_at="lastUplinkReceivedAt", name="name", tags=[CfnTag( key="key", value="value" )], thing_arn="thingArn", thing_name="thingName" )
Attributes
- description
The description of the new resource.
The maximum length is 2048 characters.
- last_uplink_received_at
The date and time when the most recent uplink was received.
- lo_ra_wan
The gateway configuration information to use to create the wireless gateway.
- name
The name of the new resource.
- tags
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.
- thing_arn
The ARN of the thing to associate with the wireless gateway.
- thing_name
The name of the thing associated with the wireless gateway.
The value is empty if a thing isn’t associated with the gateway.