amazonka-synthetics-2.0: Amazon Synthetics SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Synthetics.CreateGroup

Description

Creates a group which you can use to associate canaries with each other, including cross-Region canaries. Using groups can help you with managing and automating your canaries, and you can also view aggregated run results and statistics for all canaries in a group.

Groups are global resources. When you create a group, it is replicated across Amazon Web Services Regions, and you can view it and add canaries to it from any Region. Although the group ARN format reflects the Region name where it was created, a group is not constrained to any Region. This means that you can put canaries from multiple Regions into the same group, and then use that group to view and manage all of those canaries in a single view.

Groups are supported in all Regions except the Regions that are disabled by default. For more information about these Regions, see Enabling a Region.

Each group can contain as many as 10 canaries. You can have as many as 20 groups in your account. Any single canary can be a member of up to 10 groups.

Synopsis

Creating a Request

data CreateGroup Source #

See: newCreateGroup smart constructor.

Constructors

CreateGroup' 

Fields

  • tags :: Maybe (HashMap Text Text)

    A list of key-value pairs to associate with the group. You can associate as many as 50 tags with a group.

    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 the resources that have certain tag values.

  • name :: Text

    The name for the group. It can include any Unicode characters.

    The names for all groups in your account, across all Regions, must be unique.

Instances

Instances details
ToJSON CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

ToHeaders CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Methods

toHeaders :: CreateGroup -> [Header] #

ToPath CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

ToQuery CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

AWSRequest CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Associated Types

type AWSResponse CreateGroup #

Generic CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Associated Types

type Rep CreateGroup :: Type -> Type #

Read CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Show CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

NFData CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Methods

rnf :: CreateGroup -> () #

Eq CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Hashable CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

type AWSResponse CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

type Rep CreateGroup Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

type Rep CreateGroup = D1 ('MetaData "CreateGroup" "Amazonka.Synthetics.CreateGroup" "amazonka-synthetics-2.0-3I8gICXDswl2F1HDbijRHZ" 'False) (C1 ('MetaCons "CreateGroup'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCreateGroup Source #

Create a value of CreateGroup with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

CreateGroup, createGroup_tags - A list of key-value pairs to associate with the group. You can associate as many as 50 tags with a group.

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 the resources that have certain tag values.

CreateGroup, createGroup_name - The name for the group. It can include any Unicode characters.

The names for all groups in your account, across all Regions, must be unique.

Request Lenses

createGroup_tags :: Lens' CreateGroup (Maybe (HashMap Text Text)) Source #

A list of key-value pairs to associate with the group. You can associate as many as 50 tags with a group.

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 the resources that have certain tag values.

createGroup_name :: Lens' CreateGroup Text Source #

The name for the group. It can include any Unicode characters.

The names for all groups in your account, across all Regions, must be unique.

Destructuring the Response

data CreateGroupResponse Source #

See: newCreateGroupResponse smart constructor.

Constructors

CreateGroupResponse' 

Fields

  • group' :: Maybe Group

    A structure that contains information about the group that was just created.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic CreateGroupResponse Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Associated Types

type Rep CreateGroupResponse :: Type -> Type #

Read CreateGroupResponse Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Show CreateGroupResponse Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

NFData CreateGroupResponse Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

Methods

rnf :: CreateGroupResponse -> () #

Eq CreateGroupResponse Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

type Rep CreateGroupResponse Source # 
Instance details

Defined in Amazonka.Synthetics.CreateGroup

type Rep CreateGroupResponse = D1 ('MetaData "CreateGroupResponse" "Amazonka.Synthetics.CreateGroup" "amazonka-synthetics-2.0-3I8gICXDswl2F1HDbijRHZ" 'False) (C1 ('MetaCons "CreateGroupResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "group'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Group)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateGroupResponse Source #

Create a value of CreateGroupResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:group':CreateGroupResponse', createGroupResponse_group - A structure that contains information about the group that was just created.

$sel:httpStatus:CreateGroupResponse', createGroupResponse_httpStatus - The response's http status code.

Response Lenses

createGroupResponse_group :: Lens' CreateGroupResponse (Maybe Group) Source #

A structure that contains information about the group that was just created.