AWSLambdaVpcConfigResponse

Objective-C

@interface AWSLambdaVpcConfigResponse

Swift

class AWSLambdaVpcConfigResponse

The VPC security groups and subnets that are attached to a Lambda function.

  • A list of VPC security group IDs.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable securityGroupIds;

    Swift

    var securityGroupIds: [String]? { get set }
  • A list of VPC subnet IDs.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable subnetIds;

    Swift

    var subnetIds: [String]? { get set }
  • The ID of the VPC.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable vpcId;

    Swift

    var vpcId: String? { get set }