Interface CfnDeviceProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeviceProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.512Z")
@Stability(Stable)
public interface CfnDeviceProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDeviceProfilePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotwireless.*;
CfnDeviceProfileMixinProps cfnDeviceProfileMixinProps = CfnDeviceProfileMixinProps.builder()
.loRaWan(LoRaWANDeviceProfileProperty.builder()
.classBTimeout(123)
.classCTimeout(123)
.factoryPresetFreqsList(List.of(123))
.macVersion("macVersion")
.maxDutyCycle(123)
.maxEirp(123)
.pingSlotDr(123)
.pingSlotFreq(123)
.pingSlotPeriod(123)
.regParamsRevision("regParamsRevision")
.rfRegion("rfRegion")
.rxDataRate2(123)
.rxDelay1(123)
.rxDrOffset1(123)
.rxFreq2(123)
.supports32BitFCnt(false)
.supportsClassB(false)
.supportsClassC(false)
.supportsJoin(false)
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeviceProfileMixinPropsstatic final classAn implementation forCfnDeviceProfileMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoRaWan
LoRaWAN device profile object.Returns union: either
IResolvableorCfnDeviceProfilePropsMixin.LoRaWANDeviceProfileProperty- 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:
-
builder
- Returns:
- a
CfnDeviceProfileMixinProps.BuilderofCfnDeviceProfileMixinProps
-