amazonka-codepipeline-2.0: Amazon CodePipeline 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.CodePipeline.Types.ListWebhookItem

Description

 
Synopsis

Documentation

data ListWebhookItem Source #

The detail returned for each webhook after listing webhooks, such as the webhook URL, the webhook name, and the webhook ARN.

See: newListWebhookItem smart constructor.

Constructors

ListWebhookItem' 

Fields

  • arn :: Maybe Text

    The Amazon Resource Name (ARN) of the webhook.

  • errorCode :: Maybe Text

    The number code of the error.

  • errorMessage :: Maybe Text

    The text of the error message about the webhook.

  • lastTriggered :: Maybe POSIX

    The date and time a webhook was last successfully triggered, in timestamp format.

  • tags :: Maybe [Tag]

    Specifies the tags applied to the webhook.

  • definition :: WebhookDefinition

    The detail returned for each webhook, such as the webhook authentication type and filter rules.

  • url :: Text

    A unique URL generated by CodePipeline. When a POST request is made to this URL, the defined pipeline is started as long as the body of the post request satisfies the defined authentication and filtering conditions. Deleting and re-creating a webhook makes the old URL invalid and generates a new one.

Instances

Instances details
FromJSON ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Generic ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Associated Types

type Rep ListWebhookItem :: Type -> Type #

Read ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Show ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

NFData ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Methods

rnf :: ListWebhookItem -> () #

Eq ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Hashable ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

type Rep ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

newListWebhookItem Source #

Create a value of ListWebhookItem 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:arn:ListWebhookItem', listWebhookItem_arn - The Amazon Resource Name (ARN) of the webhook.

$sel:errorCode:ListWebhookItem', listWebhookItem_errorCode - The number code of the error.

$sel:errorMessage:ListWebhookItem', listWebhookItem_errorMessage - The text of the error message about the webhook.

$sel:lastTriggered:ListWebhookItem', listWebhookItem_lastTriggered - The date and time a webhook was last successfully triggered, in timestamp format.

$sel:tags:ListWebhookItem', listWebhookItem_tags - Specifies the tags applied to the webhook.

$sel:definition:ListWebhookItem', listWebhookItem_definition - The detail returned for each webhook, such as the webhook authentication type and filter rules.

$sel:url:ListWebhookItem', listWebhookItem_url - A unique URL generated by CodePipeline. When a POST request is made to this URL, the defined pipeline is started as long as the body of the post request satisfies the defined authentication and filtering conditions. Deleting and re-creating a webhook makes the old URL invalid and generates a new one.

listWebhookItem_arn :: Lens' ListWebhookItem (Maybe Text) Source #

The Amazon Resource Name (ARN) of the webhook.

listWebhookItem_errorMessage :: Lens' ListWebhookItem (Maybe Text) Source #

The text of the error message about the webhook.

listWebhookItem_lastTriggered :: Lens' ListWebhookItem (Maybe UTCTime) Source #

The date and time a webhook was last successfully triggered, in timestamp format.

listWebhookItem_tags :: Lens' ListWebhookItem (Maybe [Tag]) Source #

Specifies the tags applied to the webhook.

listWebhookItem_definition :: Lens' ListWebhookItem WebhookDefinition Source #

The detail returned for each webhook, such as the webhook authentication type and filter rules.

listWebhookItem_url :: Lens' ListWebhookItem Text Source #

A unique URL generated by CodePipeline. When a POST request is made to this URL, the defined pipeline is started as long as the body of the post request satisfies the defined authentication and filtering conditions. Deleting and re-creating a webhook makes the old URL invalid and generates a new one.