Interface CfnEntityTypeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntityTypeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:13.813Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEntityTypePropsstatic final classAn implementation forCfnEntityTypeProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEntityTypeProps.Builderbuilder()default StringThe 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.BuilderofCfnEntityTypeProps
-