CfnWirelessGatewayMixinProps
- class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessGatewayMixinProps(*, description=None, last_uplink_received_at=None, lo_ra_wan=None, name=None, tags=None, thing_arn=None, thing_name=None)
Bases:
objectProperties for CfnWirelessGatewayPropsMixin.
- Parameters:
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.lo_ra_wan (
Union[IResolvable,LoRaWANGatewayProperty,Dict[str,Any],None]) – The gateway configuration information to use to create the wireless gateway.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.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_iotwireless import mixins as iotwireless_mixins cfn_wireless_gateway_mixin_props = iotwireless_mixins.CfnWirelessGatewayMixinProps( description="description", last_uplink_received_at="lastUplinkReceivedAt", lo_ra_wan=iotwireless_mixins.CfnWirelessGatewayPropsMixin.LoRaWANGatewayProperty( gateway_eui="gatewayEui", rf_region="rfRegion" ), 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.