interface EntityTypeProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.FraudDetector.CfnEventType.EntityTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfrauddetector#CfnEventType_EntityTypeProperty |
Java | software.amazon.awscdk.services.frauddetector.CfnEventType.EntityTypeProperty |
Python | aws_cdk.aws_frauddetector.CfnEventType.EntityTypeProperty |
TypeScript | aws-cdk-lib » aws_frauddetector » CfnEventType » EntityTypeProperty |
The entity type details.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_frauddetector as frauddetector } from 'aws-cdk-lib';
const entityTypeProperty: frauddetector.CfnEventType.EntityTypeProperty = {
arn: 'arn',
createdTime: 'createdTime',
description: 'description',
inline: false,
lastUpdatedTime: 'lastUpdatedTime',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
arn? | string | The entity type ARN. |
created | string | Timestamp of when the entity type was created. |
description? | string | The entity type description. |
inline? | boolean | IResolvable | Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack. |
last | string | Timestamp of when the entity type was last updated. |
name? | string | The entity type name. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
arn?
Type:
string
(optional)
The entity type ARN.
createdTime?
Type:
string
(optional)
Timestamp of when the entity type was created.
description?
Type:
string
(optional)
The entity type description.
inline?
Type:
boolean |
IResolvable
(optional)
Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.
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.
lastUpdatedTime?
Type:
string
(optional)
Timestamp of when the entity type was last updated.
name?
Type:
string
(optional)
The entity type name.
^[0-9a-z_-]+$
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .