Interface CfnDeviceProfileProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeviceProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.978Z") @Stability(Stable) public interface CfnDeviceProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDeviceProfile.

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.*;
 CfnDeviceProfileProps cfnDeviceProfileProps = CfnDeviceProfileProps.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();
 
  • Method Details

    • getLoRaWan

      @Stability(Stable) @Nullable default Object getLoRaWan()
      LoRaWAN device profile object.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The name of the new resource.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> 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.

    • builder

      @Stability(Stable) static CfnDeviceProfileProps.Builder builder()
      Returns:
      a CfnDeviceProfileProps.Builder of CfnDeviceProfileProps