@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:08:45.474Z") @Stability(value=Stable) public interface CfnSegmentProps extends software.amazon.jsii.JsiiSerializable
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.evidently.*; CfnSegmentProps cfnSegmentProps = CfnSegmentProps.builder() .name("name") // the properties below are optional .description("description") .pattern("pattern") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnSegmentProps.Builder
A builder for
CfnSegmentProps |
static class |
CfnSegmentProps.Jsii$Proxy
An implementation for
CfnSegmentProps |
Modifier and Type | Method and Description |
---|---|
static CfnSegmentProps.Builder |
builder() |
default String |
getDescription()
An optional description for this segment.
|
String |
getName()
A name for the segment.
|
default String |
getPattern()
The pattern to use for the segment.
|
default List<CfnTag> |
getTags()
Assigns one or more tags (key-value pairs) to the feature.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getPattern()
For more information about pattern syntax, see Segment rule pattern syntax .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
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 .
@Stability(value=Stable) static CfnSegmentProps.Builder builder()
CfnSegmentProps.Builder
of CfnSegmentProps
Copyright © 2023. All rights reserved.