@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.689Z") @Stability(value=Stable) public interface CfnWorkspaceProps 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.aps.*;
CfnWorkspaceProps cfnWorkspaceProps = CfnWorkspaceProps.builder()
.alertManagerDefinition("alertManagerDefinition")
.alias("alias")
.loggingConfiguration(LoggingConfigurationProperty.builder()
.logGroupArn("logGroupArn")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWorkspaceProps.Builder
A builder for
CfnWorkspaceProps |
static class |
CfnWorkspaceProps.Jsii$Proxy
An implementation for
CfnWorkspaceProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnWorkspaceProps.Builder |
builder() |
default String |
getAlertManagerDefinition()
The alert manager definition for the workspace, as a string.
|
default String |
getAlias()
An alias that you assign to this workspace to help you identify it.
|
default Object |
getLoggingConfiguration()
`AWS::APS::Workspace.LoggingConfiguration`.
|
default List<CfnTag> |
getTags()
A list of tag keys and values to associate with the workspace.
|
@Stability(value=Stable) @Nullable default String getAlertManagerDefinition()
For more information, see Alert manager and templating .
@Stability(value=Stable) @Nullable default String getAlias()
It does not need to be unique.
The alias can be as many as 100 characters and can include any type of characters. Amazon Managed Service for Prometheus automatically strips any blank spaces from the beginning and end of the alias that you specify.
@Stability(value=Stable) @Nullable default Object getLoggingConfiguration()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnWorkspaceProps.Builder builder()
CfnWorkspaceProps.Builder of CfnWorkspacePropsCopyright © 2022. All rights reserved.