# EuiContentCardHeaderEndComponent

**Type:** component



Container for content placed at the end (right side) of the card header. Typically used for action buttons or menus.
Automatically integrates bookmark toggle when parent card has `isBookmarkable` enabled.

### With Action Button
```html
<eui-content-card-header-end>
    <eui-icon-button icon="eui-ellipsis-vertical" size="s"/>
</eui-content-card-header-end>
```

### With Multiple Actions
```html
<eui-content-card-header-end>
    <eui-icon-button icon="edit" size="s"/>
    <eui-icon-button icon="delete" size="s"/>
</eui-content-card-header-end>
```

### Accessibility
- All action buttons must have accessible labels
- Use `aria-label` or visible text for icon buttons
- Group related actions logically

### Notes
- Positioned at the end of the header after all other content
- Automatically includes bookmark toggle when parent card is bookmarkable
- Actions are automatically aligned and spaced
- Commonly used for contextual menus or quick actions


**Selector:** `eui-content-card-header-end`

## Inputs
- **bookmarkAccessKey**: `string` - Keyboard shortcut key for the bookmark toggle.
