interface CfnSegmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnSegmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnSegmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnSegmentMixinProps |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnSegmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » CfnSegmentMixinProps |
Properties for CfnSegmentPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-segment.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as evidently_mixins } from '@aws-cdk/mixins-preview/aws-evidently';
const cfnSegmentMixinProps: evidently_mixins.CfnSegmentMixinProps = {
description: 'description',
name: 'name',
pattern: 'pattern',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | An optional description for this segment. |
| name? | string | A name for the segment. |
| pattern? | string | The pattern to use for the segment. |
| tags? | Cfn[] | Assigns one or more tags (key-value pairs) to the feature. |
description?
Type:
string
(optional)
An optional description for this segment.
name?
Type:
string
(optional)
A name for the segment.
pattern?
Type:
string
(optional)
The pattern to use for the segment.
For more information about pattern syntax, see Segment rule pattern syntax .
tags?
Type:
Cfn[]
(optional)
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 .

.NET
Go
Java
Python
TypeScript