NAME

Paws::ElasticBeanstalk::ListPlatformBranches - Arguments for method ListPlatformBranches on Paws::ElasticBeanstalk

DESCRIPTION

This class represents the parameters used for calling the method ListPlatformBranches on the AWS Elastic Beanstalk service. Use the attributes of this class as arguments to method ListPlatformBranches.

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

SYNOPSIS

my $elasticbeanstalk = Paws->service('ElasticBeanstalk');
my $ListPlatformBranchesResult = $elasticbeanstalk->ListPlatformBranches(
  Filters => [
    {
      Attribute => 'MySearchFilterAttribute',         # OPTIONAL
      Operator  => 'MySearchFilterOperator',          # OPTIONAL
      Values    => [ 'MySearchFilterValue', ... ],    # OPTIONAL
    },
    ...
  ],    # OPTIONAL
  MaxRecords => 1,            # OPTIONAL
  NextToken  => 'MyToken',    # OPTIONAL
);

# Results:
my $NextToken = $ListPlatformBranchesResult->NextToken;
my $PlatformBranchSummaryList =
  $ListPlatformBranchesResult->PlatformBranchSummaryList;

# Returns a L<Paws::ElasticBeanstalk::ListPlatformBranchesResult> 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/elasticbeanstalk/ListPlatformBranches

ATTRIBUTES

Filters => ArrayRef[Paws::ElasticBeanstalk::SearchFilter]

Criteria for restricting the resulting list of platform branches. The filter is evaluated as a logical conjunction (AND) of the separate SearchFilter terms.

The following list shows valid attribute values for each of the SearchFilter terms. Most operators take a single value. The in and not_in operators can take multiple values.

  • Attribute = BranchName:

    • Operator: = | != | begins_with | ends_with | contains | in | not_in

  • Attribute = LifecycleState:

    • Operator: = | != | in | not_in

    • Values: beta | supported | deprecated | retired

  • Attribute = PlatformName:

    • Operator: = | != | begins_with | ends_with | contains | in | not_in

  • Attribute = TierType:

    • Operator: = | !=

    • Values: WebServer/Standard | Worker/SQS/HTTP

Array size: limited to 10 SearchFilter objects.

Within each SearchFilter item, the Values array is limited to 10 items.

MaxRecords => Int

The maximum number of platform branch values returned in one call.

NextToken => Str

For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.

If no NextToken is specified, the first page is retrieved.

SEE ALSO

This class forms part of Paws, documenting arguments for method ListPlatformBranches in Paws::ElasticBeanstalk

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