Interface CfnSegmentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSegmentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.417Z")
@Stability(Stable)
public interface CfnSegmentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSegmentPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.evidently.*;
CfnSegmentMixinProps cfnSegmentMixinProps = CfnSegmentMixinProps.builder()
.description("description")
.name("name")
.pattern("pattern")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSegmentMixinPropsstatic final classAn implementation forCfnSegmentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSegmentMixinProps.Builderbuilder()default StringAn optional description for this segment.default StringgetName()A name for the segment.default StringThe pattern to use for the segment.getTags()Assigns one or more tags (key-value pairs) to the feature.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
An optional description for this segment.- See Also:
-
getName
A name for the segment.- See Also:
-
getPattern
The pattern to use for the segment.For more information about pattern syntax, see Segment rule pattern syntax .
- See Also:
-
getTags
Assigns one or more tags (key-value pairs) to the feature.Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.
Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters.
You can associate as many as 50 tags with a feature.
For more information, see Tagging AWS resources .
- See Also:
-
builder
- Returns:
- a
CfnSegmentMixinProps.BuilderofCfnSegmentMixinProps
-