@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.081Z") @Stability(value=Stable) public interface CfnNetworkAnalyzerConfigurationProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnNetworkAnalyzerConfigurationProps.Builder
A builder for
CfnNetworkAnalyzerConfigurationProps |
static class |
CfnNetworkAnalyzerConfigurationProps.Jsii$Proxy
An implementation for
CfnNetworkAnalyzerConfigurationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnNetworkAnalyzerConfigurationProps.Builder |
builder() |
default String |
getDescription()
`AWS::IoTWireless::NetworkAnalyzerConfiguration.Description`.
|
String |
getName()
`AWS::IoTWireless::NetworkAnalyzerConfiguration.Name`.
|
default List<CfnTag> |
getTags()
`AWS::IoTWireless::NetworkAnalyzerConfiguration.Tags`.
|
default Object |
getTraceContent()
`AWS::IoTWireless::NetworkAnalyzerConfiguration.TraceContent`.
|
default List<String> |
getWirelessDevices()
`AWS::IoTWireless::NetworkAnalyzerConfiguration.WirelessDevices`.
|
default List<String> |
getWirelessGateways()
`AWS::IoTWireless::NetworkAnalyzerConfiguration.WirelessGateways`.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default Object getTraceContent()
@Stability(value=Stable) @Nullable default List<String> getWirelessDevices()
@Stability(value=Stable) @Nullable default List<String> getWirelessGateways()
@Stability(value=Stable) static CfnNetworkAnalyzerConfigurationProps.Builder builder()
Copyright © 2022. All rights reserved.