Interface CfnDetector.LabelProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDetector.LabelProperty.Jsii$Proxy
Enclosing class:
CfnDetector

@Stability(Stable) public static interface CfnDetector.LabelProperty extends software.amazon.jsii.JsiiSerializable
The label details.

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();
 
  • Method Details

    • getArn

      @Stability(Stable) @Nullable default String getArn()
      The label ARN.
    • getCreatedTime

      @Stability(Stable) @Nullable default String getCreatedTime()
      Timestamp of when the event type was created.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The label description.
    • getInline

      @Stability(Stable) @Nullable default Object 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 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::Detector 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 detector but not execute any changes to the variables.

    • getLastUpdatedTime

      @Stability(Stable) @Nullable default String getLastUpdatedTime()
      Timestamp of when the label was last updated.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The label name.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

      @Stability(Stable) static CfnDetector.LabelProperty.Builder builder()
      Returns:
      a CfnDetector.LabelProperty.Builder of CfnDetector.LabelProperty