Interface CfnEntityTypeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntityTypeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:56.823Z")
@Stability(Stable)
public interface CfnEntityTypeProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEntityType
.
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.frauddetector.*; CfnEntityTypeProps cfnEntityTypeProps = CfnEntityTypeProps.builder() .name("name") // the properties below are optional .description("description") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEntityTypeProps
static final class
An implementation forCfnEntityTypeProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEntityTypeProps.Builder
builder()
default String
The entity type description.getName()
The entity type name.getTags()
A key and value pair.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The entity type name.Pattern:
^[0-9a-z_-]+$
-
getDescription
The entity type description. -
getTags
A key and value pair. -
builder
- Returns:
- a
CfnEntityTypeProps.Builder
ofCfnEntityTypeProps
-