Interface CfnEventType.LabelProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventType.LabelProperty.Jsii$Proxy
- Enclosing class:
CfnEventType
@Stability(Stable)
public static interface CfnEventType.LabelProperty
extends software.amazon.jsii.JsiiSerializable
The label associated with the event type.
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.*; LabelProperty labelProperty = LabelProperty.builder() .arn("arn") .createdTime("createdTime") .description("description") .inline(false) .lastUpdatedTime("lastUpdatedTime") .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEventType.LabelProperty
static final class
An implementation forCfnEventType.LabelProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
getArn()
The label ARN.default String
Timestamp of when the event type was created.default String
The label description.default Object
Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.default String
Timestamp of when the label was last updated.default String
getName()
The label name.getTags()
An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The label ARN.- See Also:
-
getCreatedTime
Timestamp of when the event type was created.- See Also:
-
getDescription
The label description.- See Also:
-
getInline
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 isfalse
, 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 setInline=true
for these variables and CloudFormation will create/update/delete the variables as part of stack operations. However, if you setInline=false
, CloudFormation will associate the variables to your EventType but not execute any changes to the variables.- See Also:
-
getLastUpdatedTime
Timestamp of when the label was last updated.- See Also:
-
getName
The label name.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnEventType.LabelProperty.Builder
ofCfnEventType.LabelProperty
-