libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

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.

  • lastTriggered :: Maybe POSIX

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

  • errorMessage :: Maybe Text

    The text of the error message about the webhook.

  • 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
Eq ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Read ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Show 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 #

NFData ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

Methods

rnf :: ListWebhookItem -> () #

Hashable ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

FromJSON ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

type Rep ListWebhookItem Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ListWebhookItem

type Rep ListWebhookItem = D1 ('MetaData "ListWebhookItem" "Amazonka.CodePipeline.Types.ListWebhookItem" "libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline" 'False) (C1 ('MetaCons "ListWebhookItem'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "errorCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastTriggered") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "errorMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "definition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 WebhookDefinition) :*: S1 ('MetaSel ('Just "url") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

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:lastTriggered:ListWebhookItem', listWebhookItem_lastTriggered - The date and time a webhook was last successfully triggered, in timestamp format.

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

$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_lastTriggered :: Lens' ListWebhookItem (Maybe UTCTime) Source #

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

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

The text of the error message about the webhook.

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.