Interface CfnEntityTypeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntityTypeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:19.518Z")
@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();
- See Also:
-
Nested Class Summary
Modifier 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_-]+$
- See Also:
-
getDescription
The entity type description.- See Also:
-
getTags
A key and value pair.- See Also:
-
builder
- Returns:
- a
CfnEntityTypeProps.Builder
ofCfnEntityTypeProps
-