Class: Aws::EC2::Waiters::SecurityGroupVpcAssociationDisassociated

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ SecurityGroupVpcAssociationDisassociated

Returns a new instance of SecurityGroupVpcAssociationDisassociated.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 7
  • :delay (Integer) — default: 10
  • :before_attempt (Proc)
  • :before_wait (Proc)


1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 1340

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 7,
    delay: 10,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_security_group_vpc_associations,
      acceptors: [
        {
          "expected" => "disassociated",
          "matcher" => "pathAll",
          "state" => "success",
          "argument" => "security_group_vpc_associations[].state"
        },
        {
          "expected" => "disassociating",
          "matcher" => "pathAny",
          "state" => "retry",
          "argument" => "security_group_vpc_associations[].state"
        },
        {
          "expected" => "disassociation-failed",
          "matcher" => "pathAny",
          "state" => "failure",
          "argument" => "security_group_vpc_associations[].state"
        },
        {
          "expected" => true,
          "matcher" => "path",
          "state" => "success",
          "argument" => "length(security_group_vpc_associations[]) == `0`"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

#wait(params = {}) ⇒ Types::DescribeSecurityGroupVpcAssociationsResult

Returns a response object which responds to the following methods:

Parameters:

  • params (Hash) (defaults to: {})

    a customizable set of options

Options Hash (params):

  • :filters (Array<Types::Filter>)

    Security group VPC association filters.

    • group-id: The security group ID.

    • group-owner-id: The group owner ID.

    • state: The state of the association.

    • vpc-id: The ID of the associated VPC.

    • vpc-owner-id: The account ID of the VPC owner.

  • :next_token (String)

    The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

  • :max_results (Integer)

    The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

  • :dry_run (Boolean)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Returns:



1379
1380
1381
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 1379

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end