Interface CfnServiceProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:07.834Z")
@Stability(Stable)
public interface CfnServiceProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnServiceProfile.
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.*;
CfnServiceProfileProps cfnServiceProfileProps = CfnServiceProfileProps.builder()
.loRaWan(LoRaWANServiceProfileProperty.builder()
.addGwMetadata(false)
.channelMask("channelMask")
.devStatusReqFreq(123)
.dlBucketSize(123)
.dlRate(123)
.dlRatePolicy("dlRatePolicy")
.drMax(123)
.drMin(123)
.hrAllowed(false)
.minGwDiversity(123)
.nwkGeoLoc(false)
.prAllowed(false)
.raAllowed(false)
.reportDevStatusBattery(false)
.reportDevStatusMargin(false)
.targetPer(123)
.ulBucketSize(123)
.ulRate(123)
.ulRatePolicy("ulRatePolicy")
.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 forCfnServiceProfilePropsstatic final classAn implementation forCfnServiceProfileProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoRaWan
LoRaWAN service profile object.Returns union: either
IResolvableorCfnServiceProfile.LoRaWANServiceProfileProperty- 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
CfnServiceProfileProps.BuilderofCfnServiceProfileProps
-