@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:46.392Z")
public interface CfnSegmentProps
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 java.lang.String |
getDescription()
An optional description for this segment.
|
java.lang.String |
getName()
A name for the segment.
|
default java.lang.String |
getPattern()
The pattern to use for the segment.
|
default java.util.List<CfnTag> |
getTags()
Assigns one or more tags (key-value pairs) to the feature.
|
java.lang.String getName()
default java.lang.String getDescription()
default java.lang.String getPattern()
For more information about pattern syntax, see Segment rule pattern syntax .
default java.util.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 .
static CfnSegmentProps.Builder builder()
CfnSegmentProps.Builder
of CfnSegmentProps