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.ActionTypeExecutor

Description

 
Synopsis

Documentation

data ActionTypeExecutor Source #

The action engine, or executor, for an action type created for a provider, where the action is to be used by customers of the provider. The action engine is associated with the model used to create and update the action, such as the Lambda integration model.

See: newActionTypeExecutor smart constructor.

Constructors

ActionTypeExecutor' 

Fields

  • jobTimeout :: Maybe Natural

    The timeout in seconds for the job. An action execution can have multiple jobs. This is the timeout for a single job, not the entire action execution.

  • policyStatementsTemplate :: Maybe Text

    The policy statement that specifies the permissions in the CodePipeline customer’s account that are needed to successfully run an action.

    To grant permission to another account, specify the account ID as the Principal, a domain-style identifier defined by the service, for example codepipeline.amazonaws.com.

    The size of the passed JSON policy document cannot exceed 2048 characters.

  • configuration :: ExecutorConfiguration

    The action configuration properties for the action type. These properties are specified in the action definition when the action type is created.

  • type' :: ExecutorType

    The integration model used to create and update the action type, Lambda or JobWorker.

Instances

Instances details
Eq ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

Read ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

Show ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

Generic ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

Associated Types

type Rep ActionTypeExecutor :: Type -> Type #

NFData ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

Methods

rnf :: ActionTypeExecutor -> () #

Hashable ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

ToJSON ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

FromJSON ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

type Rep ActionTypeExecutor Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.ActionTypeExecutor

type Rep ActionTypeExecutor = D1 ('MetaData "ActionTypeExecutor" "Amazonka.CodePipeline.Types.ActionTypeExecutor" "libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline" 'False) (C1 ('MetaCons "ActionTypeExecutor'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "jobTimeout") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "policyStatementsTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "configuration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ExecutorConfiguration) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ExecutorType))))

newActionTypeExecutor Source #

Create a value of ActionTypeExecutor 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:jobTimeout:ActionTypeExecutor', actionTypeExecutor_jobTimeout - The timeout in seconds for the job. An action execution can have multiple jobs. This is the timeout for a single job, not the entire action execution.

$sel:policyStatementsTemplate:ActionTypeExecutor', actionTypeExecutor_policyStatementsTemplate - The policy statement that specifies the permissions in the CodePipeline customer’s account that are needed to successfully run an action.

To grant permission to another account, specify the account ID as the Principal, a domain-style identifier defined by the service, for example codepipeline.amazonaws.com.

The size of the passed JSON policy document cannot exceed 2048 characters.

$sel:configuration:ActionTypeExecutor', actionTypeExecutor_configuration - The action configuration properties for the action type. These properties are specified in the action definition when the action type is created.

$sel:type':ActionTypeExecutor', actionTypeExecutor_type - The integration model used to create and update the action type, Lambda or JobWorker.

actionTypeExecutor_jobTimeout :: Lens' ActionTypeExecutor (Maybe Natural) Source #

The timeout in seconds for the job. An action execution can have multiple jobs. This is the timeout for a single job, not the entire action execution.

actionTypeExecutor_policyStatementsTemplate :: Lens' ActionTypeExecutor (Maybe Text) Source #

The policy statement that specifies the permissions in the CodePipeline customer’s account that are needed to successfully run an action.

To grant permission to another account, specify the account ID as the Principal, a domain-style identifier defined by the service, for example codepipeline.amazonaws.com.

The size of the passed JSON policy document cannot exceed 2048 characters.

actionTypeExecutor_configuration :: Lens' ActionTypeExecutor ExecutorConfiguration Source #

The action configuration properties for the action type. These properties are specified in the action definition when the action type is created.

actionTypeExecutor_type :: Lens' ActionTypeExecutor ExecutorType Source #

The integration model used to create and update the action type, Lambda or JobWorker.