Class CfnNetworkAnalyzerConfiguration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.983Z") @Stability(Stable) public class CfnNetworkAnalyzerConfiguration extends CfnResource implements IInspectable
A CloudFormation AWS::IoTWireless::NetworkAnalyzerConfiguration.

Network analyzer configuration.

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;
 CfnNetworkAnalyzerConfiguration cfnNetworkAnalyzerConfiguration = CfnNetworkAnalyzerConfiguration.Builder.create(this, "MyCfnNetworkAnalyzerConfiguration")
         .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();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnNetworkAnalyzerConfiguration

      protected CfnNetworkAnalyzerConfiguration(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnNetworkAnalyzerConfiguration

      protected CfnNetworkAnalyzerConfiguration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnNetworkAnalyzerConfiguration

      @Stability(Stable) public CfnNetworkAnalyzerConfiguration(@NotNull Construct scope, @NotNull String id, @NotNull CfnNetworkAnalyzerConfigurationProps props)
      Create a new AWS::IoTWireless::NetworkAnalyzerConfiguration.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the resource.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      The tags to attach to the specified resource.

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

    • getName

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

      @Stability(Stable) public void setName(@NotNull String value)
      Name of the network analyzer configuration.
    • getTraceContent

      @Stability(Stable) @NotNull public Object getTraceContent()
      Trace content for your wireless gateway and wireless device resources.
    • setTraceContent

      @Stability(Stable) public void setTraceContent(@NotNull Object value)
      Trace content for your wireless gateway and wireless device resources.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      The description of the resource.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      The description of the resource.
    • getWirelessDevices

      @Stability(Stable) @Nullable public 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.

    • setWirelessDevices

      @Stability(Stable) public void setWirelessDevices(@Nullable List<String> value)
      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 public 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.

    • setWirelessGateways

      @Stability(Stable) public void setWirelessGateways(@Nullable List<String> value)
      Wireless gateway resources to add to the network analyzer configuration.

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