The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Paws::IAM::CreateServiceLinkedRole - Arguments for method CreateServiceLinkedRole on Paws::IAM

DESCRIPTION

This class represents the parameters used for calling the method CreateServiceLinkedRole on the AWS Identity and Access Management service. Use the attributes of this class as arguments to method CreateServiceLinkedRole.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateServiceLinkedRole.

SYNOPSIS

    my $iam = Paws->service('IAM');
    my $CreateServiceLinkedRoleResponse = $iam->CreateServiceLinkedRole(
      AWSServiceName => 'MygroupNameType',
      CustomSuffix   => 'MycustomSuffixType',       # OPTIONAL
      Description    => 'MyroleDescriptionType',    # OPTIONAL
    );

    # Results:
    my $Role = $CreateServiceLinkedRoleResponse->Role;

    # Returns a L<Paws::IAM::CreateServiceLinkedRoleResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/iam/CreateServiceLinkedRole

ATTRIBUTES

REQUIRED AWSServiceName => Str

The service principal for the AWS service to which this role is attached. You use a string similar to a URL but without the http:// in front. For example: elasticbeanstalk.amazonaws.com.

Service principals are unique and case-sensitive. To find the exact service principal for your service-linked role, see AWS services that work with IAM (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-services-that-work-with-iam.html) in the IAM User Guide. Look for the services that have Yes in the Service-Linked Role column. Choose the Yes link to view the service-linked role documentation for that service.

CustomSuffix => Str

A string that you provide, which is combined with the service-provided prefix to form the complete role name. If you make multiple requests for the same service, then you must supply a different CustomSuffix for each request. Otherwise the request fails with a duplicate role name error. For example, you could add -1 or -debug to the suffix.

Some services do not support the CustomSuffix parameter. If you provide an optional suffix and the operation fails, try the operation again without the suffix.

Description => Str

The description of the role.

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateServiceLinkedRole in Paws::IAM

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues