public static interface CfnEventType.EntityTypeProperty
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.*; EntityTypeProperty entityTypeProperty = EntityTypeProperty.builder() .arn("arn") .createdTime("createdTime") .description("description") .inline(false) .lastUpdatedTime("lastUpdatedTime") .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEventType.EntityTypeProperty.Builder
A builder for
CfnEventType.EntityTypeProperty |
static class |
CfnEventType.EntityTypeProperty.Jsii$Proxy
An implementation for
CfnEventType.EntityTypeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEventType.EntityTypeProperty.Builder |
builder() |
default java.lang.String |
getArn()
The entity type ARN.
|
default java.lang.String |
getCreatedTime()
Timestamp of when the entity type was created.
|
default java.lang.String |
getDescription()
The entity type description.
|
default java.lang.Object |
getInline()
Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.
|
default java.lang.String |
getLastUpdatedTime()
Timestamp of when the entity type was last updated.
|
default java.lang.String |
getName()
The entity type name.
|
default java.util.List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
default java.lang.String getArn()
default java.lang.String getCreatedTime()
default java.lang.String getDescription()
default java.lang.Object getInline()
If the value is true
, CloudFormation will create/update/delete the resource when creating/updating/deleting the stack. If the value is false
, CloudFormation will validate that the object exists and then use it within the resource without making changes to the object.
For example, when creating AWS::FraudDetector::EventType
you must define at least two variables. You can set Inline=true
for these variables and CloudFormation will create/update/delete the variables as part of stack operations. However, if you set Inline=false
, CloudFormation will associate the variables to your event type but not execute any changes to the variables.
default java.lang.String getLastUpdatedTime()
default java.lang.String getName()
^[0-9a-z_-]+$
default java.util.List<CfnTag> getTags()
For more information, see Tag .
static CfnEventType.EntityTypeProperty.Builder builder()