Class: Aws::CodeCommit::Types::AssociateApprovalRuleTemplateWithRepositoryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::AssociateApprovalRuleTemplateWithRepositoryInput
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass AssociateApprovalRuleTemplateWithRepositoryInput data as a hash:
{
approval_rule_template_name: "ApprovalRuleTemplateName", # required
repository_name: "RepositoryName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#approval_rule_template_name ⇒ String
The name for the approval rule template.
-
#repository_name ⇒ String
The name of the repository that you want to associate with the template.
Instance Attribute Details
#approval_rule_template_name ⇒ String
The name for the approval rule template.
298 299 300 301 302 303 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 298 class AssociateApprovalRuleTemplateWithRepositoryInput < Struct.new( :approval_rule_template_name, :repository_name) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository that you want to associate with the template.
298 299 300 301 302 303 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 298 class AssociateApprovalRuleTemplateWithRepositoryInput < Struct.new( :approval_rule_template_name, :repository_name) SENSITIVE = [] include Aws::Structure end |