libZSservicesZSamazonka-codecommitZSamazonka-codecommit
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.CodeCommit.CreateApprovalRuleTemplate

Description

Creates a template for approval rules that can then be associated with one or more repositories in your AWS account. When you associate a template with a repository, AWS CodeCommit creates an approval rule that matches the conditions of the template for all pull requests that meet the conditions of the template. For more information, see AssociateApprovalRuleTemplateWithRepository.

Synopsis

Creating a Request

data CreateApprovalRuleTemplate Source #

See: newCreateApprovalRuleTemplate smart constructor.

Constructors

CreateApprovalRuleTemplate' 

Fields

  • approvalRuleTemplateDescription :: Maybe Text

    The description of the approval rule template. Consider providing a description that explains what this template does and when it might be appropriate to associate it with repositories.

  • approvalRuleTemplateName :: Text

    The name of the approval rule template. Provide descriptive names, because this name is applied to the approval rules created automatically in associated repositories.

  • approvalRuleTemplateContent :: Text

    The content of the approval rule that is created on pull requests in associated repositories. If you specify one or more destination references (branches), approval rules are created in an associated repository only if their destination references (branches) match those specified in the template.

    When you create the content of the approval rule template, you can specify approvers in an approval pool in one of two ways:

    • CodeCommitApprovers: This option only requires an AWS account and a resource. It can be used for both IAM users and federated access users whose name matches the provided resource name. This is a very powerful option that offers a great deal of flexibility. For example, if you specify the AWS account 123456789012 and Mary_Major, all of the following are counted as approvals coming from that user:

      • An IAM user in the account (arn:aws:iam::123456789012:user/Mary_Major)
      • A federated user identified in IAM as Mary_Major (arn:aws:sts::123456789012:federated-user/Mary_Major)

      This option does not recognize an active session of someone assuming the role of CodeCommitReview with a role session name of Mary_Major (arn:aws:sts::123456789012:assumed-role/CodeCommitReview/Mary_Major) unless you include a wildcard (*Mary_Major).

    • Fully qualified ARN: This option allows you to specify the fully qualified Amazon Resource Name (ARN) of the IAM user or role.

    For more information about IAM ARNs, wildcards, and formats, see IAM Identifiers in the IAM User Guide.

Instances

Instances details
Eq CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Read CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Show CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Generic CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Associated Types

type Rep CreateApprovalRuleTemplate :: Type -> Type #

NFData CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Hashable CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

ToJSON CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

AWSRequest CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

ToHeaders CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

ToPath CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

ToQuery CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

type Rep CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

type Rep CreateApprovalRuleTemplate = D1 ('MetaData "CreateApprovalRuleTemplate" "Amazonka.CodeCommit.CreateApprovalRuleTemplate" "libZSservicesZSamazonka-codecommitZSamazonka-codecommit" 'False) (C1 ('MetaCons "CreateApprovalRuleTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "approvalRuleTemplateDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "approvalRuleTemplateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "approvalRuleTemplateContent") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse CreateApprovalRuleTemplate Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

newCreateApprovalRuleTemplate Source #

Create a value of CreateApprovalRuleTemplate 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:approvalRuleTemplateDescription:CreateApprovalRuleTemplate', createApprovalRuleTemplate_approvalRuleTemplateDescription - The description of the approval rule template. Consider providing a description that explains what this template does and when it might be appropriate to associate it with repositories.

$sel:approvalRuleTemplateName:CreateApprovalRuleTemplate', createApprovalRuleTemplate_approvalRuleTemplateName - The name of the approval rule template. Provide descriptive names, because this name is applied to the approval rules created automatically in associated repositories.

$sel:approvalRuleTemplateContent:CreateApprovalRuleTemplate', createApprovalRuleTemplate_approvalRuleTemplateContent - The content of the approval rule that is created on pull requests in associated repositories. If you specify one or more destination references (branches), approval rules are created in an associated repository only if their destination references (branches) match those specified in the template.

When you create the content of the approval rule template, you can specify approvers in an approval pool in one of two ways:

  • CodeCommitApprovers: This option only requires an AWS account and a resource. It can be used for both IAM users and federated access users whose name matches the provided resource name. This is a very powerful option that offers a great deal of flexibility. For example, if you specify the AWS account 123456789012 and Mary_Major, all of the following are counted as approvals coming from that user:

    • An IAM user in the account (arn:aws:iam::123456789012:user/Mary_Major)
    • A federated user identified in IAM as Mary_Major (arn:aws:sts::123456789012:federated-user/Mary_Major)

    This option does not recognize an active session of someone assuming the role of CodeCommitReview with a role session name of Mary_Major (arn:aws:sts::123456789012:assumed-role/CodeCommitReview/Mary_Major) unless you include a wildcard (*Mary_Major).

  • Fully qualified ARN: This option allows you to specify the fully qualified Amazon Resource Name (ARN) of the IAM user or role.

For more information about IAM ARNs, wildcards, and formats, see IAM Identifiers in the IAM User Guide.

Request Lenses

createApprovalRuleTemplate_approvalRuleTemplateDescription :: Lens' CreateApprovalRuleTemplate (Maybe Text) Source #

The description of the approval rule template. Consider providing a description that explains what this template does and when it might be appropriate to associate it with repositories.

createApprovalRuleTemplate_approvalRuleTemplateName :: Lens' CreateApprovalRuleTemplate Text Source #

The name of the approval rule template. Provide descriptive names, because this name is applied to the approval rules created automatically in associated repositories.

createApprovalRuleTemplate_approvalRuleTemplateContent :: Lens' CreateApprovalRuleTemplate Text Source #

The content of the approval rule that is created on pull requests in associated repositories. If you specify one or more destination references (branches), approval rules are created in an associated repository only if their destination references (branches) match those specified in the template.

When you create the content of the approval rule template, you can specify approvers in an approval pool in one of two ways:

  • CodeCommitApprovers: This option only requires an AWS account and a resource. It can be used for both IAM users and federated access users whose name matches the provided resource name. This is a very powerful option that offers a great deal of flexibility. For example, if you specify the AWS account 123456789012 and Mary_Major, all of the following are counted as approvals coming from that user:

    • An IAM user in the account (arn:aws:iam::123456789012:user/Mary_Major)
    • A federated user identified in IAM as Mary_Major (arn:aws:sts::123456789012:federated-user/Mary_Major)

    This option does not recognize an active session of someone assuming the role of CodeCommitReview with a role session name of Mary_Major (arn:aws:sts::123456789012:assumed-role/CodeCommitReview/Mary_Major) unless you include a wildcard (*Mary_Major).

  • Fully qualified ARN: This option allows you to specify the fully qualified Amazon Resource Name (ARN) of the IAM user or role.

For more information about IAM ARNs, wildcards, and formats, see IAM Identifiers in the IAM User Guide.

Destructuring the Response

data CreateApprovalRuleTemplateResponse Source #

Constructors

CreateApprovalRuleTemplateResponse' 

Fields

Instances

Instances details
Eq CreateApprovalRuleTemplateResponse Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Read CreateApprovalRuleTemplateResponse Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Show CreateApprovalRuleTemplateResponse Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Generic CreateApprovalRuleTemplateResponse Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

Associated Types

type Rep CreateApprovalRuleTemplateResponse :: Type -> Type #

NFData CreateApprovalRuleTemplateResponse Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

type Rep CreateApprovalRuleTemplateResponse Source # 
Instance details

Defined in Amazonka.CodeCommit.CreateApprovalRuleTemplate

type Rep CreateApprovalRuleTemplateResponse = D1 ('MetaData "CreateApprovalRuleTemplateResponse" "Amazonka.CodeCommit.CreateApprovalRuleTemplate" "libZSservicesZSamazonka-codecommitZSamazonka-codecommit" 'False) (C1 ('MetaCons "CreateApprovalRuleTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "approvalRuleTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ApprovalRuleTemplate)))

newCreateApprovalRuleTemplateResponse Source #

Create a value of CreateApprovalRuleTemplateResponse 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:httpStatus:CreateApprovalRuleTemplateResponse', createApprovalRuleTemplateResponse_httpStatus - The response's http status code.

$sel:approvalRuleTemplate:CreateApprovalRuleTemplateResponse', createApprovalRuleTemplateResponse_approvalRuleTemplate - The content and structure of the created approval rule template.

Response Lenses