Class CfnNetworkAnalyzerConfiguration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.iotwireless.CfnNetworkAnalyzerConfiguration
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:08.678Z") @Stability(Stable) public class CfnNetworkAnalyzerConfiguration extends CfnResource implements IInspectable, ITaggable
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();
 

See Also:
  • 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 software.constructs.Construct scope, @NotNull String id, @NotNull CfnNetworkAnalyzerConfigurationProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). 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()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • 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.
    • 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.
    • getTagsRaw

      @Stability(Stable) @Nullable public List<CfnTag> getTagsRaw()
      The tags to attach to the specified resource.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable List<CfnTag> value)
      The tags to attach to the specified resource.
    • getTraceContent

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

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

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

      @Stability(Stable) public void setWirelessDevices(@Nullable List<String> value)
      Wireless device resources to add to the network analyzer configuration.
    • getWirelessGateways

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

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