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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNetworkAnalyzerConfigurationPropsstatic final classAn implementation forCfnNetworkAnalyzerConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the resource.getName()Name of the network analyzer configuration.getTags()The tags to attach to the specified resource.default ObjectTrace 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
WirelessDeviceIdof the resource to add in the input array. -
getWirelessGateways
Wireless gateway resources to add to the network analyzer configuration.Provide the
WirelessGatewayIdof the resource to add in the input array. -
builder
-