Interface CfnNetworkAnalyzerConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkAnalyzerConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.985Z")
@Stability(Stable)
public interface CfnNetworkAnalyzerConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnNetworkAnalyzerConfiguration
.
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.*; Object traceContent; CfnNetworkAnalyzerConfigurationProps cfnNetworkAnalyzerConfigurationProps = CfnNetworkAnalyzerConfigurationProps.builder() .name("name") // the properties below are optional .description("description") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .traceContent(traceContent) .wirelessDevices(List.of("wirelessDevices")) .wirelessGateways(List.of("wirelessGateways")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnNetworkAnalyzerConfigurationProps
static final class
An implementation forCfnNetworkAnalyzerConfigurationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the resource.getName()
Name of the network analyzer configuration.getTags()
The tags to attach to the specified resource.default Object
Trace content for your wireless gateway and wireless device resources.Wireless device resources to add to the network analyzer configuration.Wireless gateway resources to add to the network analyzer configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the network analyzer configuration. -
getDescription
The description of the resource. -
getTags
The tags to attach to the specified resource.Tags are metadata that you can use to manage a resource.
-
getTraceContent
Trace content for your wireless gateway and wireless device resources. -
getWirelessDevices
Wireless device resources to add to the network analyzer configuration.Provide the
WirelessDeviceId
of the resource to add in the input array. -
getWirelessGateways
Wireless gateway resources to add to the network analyzer configuration.Provide the
WirelessGatewayId
of the resource to add in the input array. -
builder
-