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();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      Name of the network analyzer configuration.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the resource.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags to attach to the specified resource.

      Tags are metadata that you can use to manage a resource.

    • getTraceContent

      @Stability(Stable) @Nullable default Object getTraceContent()
      Trace content for your wireless gateway and wireless device resources.
    • getWirelessDevices

      @Stability(Stable) @Nullable default List<String> getWirelessDevices()
      Wireless device resources to add to the network analyzer configuration.

      Provide the WirelessDeviceId of the resource to add in the input array.

    • getWirelessGateways

      @Stability(Stable) @Nullable default List<String> getWirelessGateways()
      Wireless gateway resources to add to the network analyzer configuration.

      Provide the WirelessGatewayId of the resource to add in the input array.

    • builder

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