Interface CfnServiceProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.992Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnServiceProfileProps
static final class
An implementation forCfnServiceProfileProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoRaWan
LoRaWAN service profile object. -
getName
The name of the new resource. -
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
- Returns:
- a
CfnServiceProfileProps.Builder
ofCfnServiceProfileProps
-