@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:35.416Z") @Stability(value=Stable) public interface CfnIPSetProps 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.guardduty.*;
CfnIPSetProps cfnIPSetProps = CfnIPSetProps.builder()
.activate(false)
.detectorId("detectorId")
.format("format")
.location("location")
// the properties below are optional
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIPSetProps.Builder
A builder for
CfnIPSetProps |
static class |
CfnIPSetProps.Jsii$Proxy
An implementation for
CfnIPSetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnIPSetProps.Builder |
builder() |
Object |
getActivate()
Indicates whether or not uses the `IPSet` .
|
String |
getDetectorId()
The unique ID of the detector of the GuardDuty account that you want to create an IPSet for.
|
String |
getFormat()
The format of the file that contains the IPSet.
|
String |
getLocation()
The URI of the file that contains the IPSet.
|
default String |
getName()
The user-friendly name to identify the IPSet.
|
default List<CfnTag> |
getTags()
The tags to be added to a new IP set resource.
|
@Stability(value=Stable) @NotNull Object getActivate()
@Stability(value=Stable) @NotNull String getDetectorId()
@Stability(value=Stable) @NotNull String getFormat()
@Stability(value=Stable) @NotNull String getLocation()
@Stability(value=Stable) @Nullable default String getName()
Allowed characters are alphanumerics, spaces, hyphens (-), and underscores (_).
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
Each tag consists of a key and an optional value, both of which you define.
For more information, see Tag .
@Stability(value=Stable) static CfnIPSetProps.Builder builder()
CfnIPSetProps.Builder of CfnIPSetPropsCopyright © 2022. All rights reserved.