Method: SDM::AWS#initialize

Defined in:
lib/models/porcelain.rb

#initialize(access_key: nil, egress_filter: nil, healthcheck_region: nil, healthy: nil, id: nil, name: nil, role_arn: nil, role_external_id: nil, secret_access_key: nil, secret_store_id: nil, tags: nil) ⇒ AWS

Returns a new instance of AWS.



445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
# File 'lib/models/porcelain.rb', line 445

def initialize(
  access_key: nil,
  egress_filter: nil,
  healthcheck_region: nil,
  healthy: nil,
  id: nil,
  name: nil,
  role_arn: nil,
  role_external_id: nil,
  secret_access_key: nil,
  secret_store_id: nil,
  tags: nil
)
  if access_key != nil
    @access_key = access_key
  end
  if egress_filter != nil
    @egress_filter = egress_filter
  end
  if healthcheck_region != nil
    @healthcheck_region = healthcheck_region
  end
  if healthy != nil
    @healthy = healthy
  end
  if id != nil
    @id = id
  end
  if name != nil
    @name = name
  end
  if role_arn != nil
    @role_arn = role_arn
  end
  if role_external_id != nil
    @role_external_id = role_external_id
  end
  if secret_access_key != nil
    @secret_access_key = secret_access_key
  end
  if secret_store_id != nil
    @secret_store_id = secret_store_id
  end
  if tags != nil
    @tags = tags
  end
end