@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:41.814Z") @Stability(value=Stable) public interface CfnGroupProps 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.synthetics.*;
CfnGroupProps cfnGroupProps = CfnGroupProps.builder()
.name("name")
// the properties below are optional
.resourceArns(List.of("resourceArns"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGroupProps.Builder
A builder for
CfnGroupProps |
static class |
CfnGroupProps.Jsii$Proxy
An implementation for
CfnGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnGroupProps.Builder |
builder() |
String |
getName()
A name for the group.
|
default List<String> |
getResourceArns()
The ARNs of the canaries that you want to associate with this group.
|
default List<CfnTag> |
getTags()
The list of key-value pairs that are associated with the group.
|
@Stability(value=Stable) @NotNull String getName()
The names for all groups in your account, across all Regions, must be unique.
@Stability(value=Stable) @Nullable default List<String> getResourceArns()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnGroupProps.Builder builder()
CfnGroupProps.Builder of CfnGroupPropsCopyright © 2022. All rights reserved.