interface SourceSecurityGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancing.CfnLoadBalancer.SourceSecurityGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancing#CfnLoadBalancer_SourceSecurityGroupProperty |
Java | software.amazon.awscdk.services.elasticloadbalancing.CfnLoadBalancer.SourceSecurityGroupProperty |
Python | aws_cdk.aws_elasticloadbalancing.CfnLoadBalancer.SourceSecurityGroupProperty |
TypeScript | aws-cdk-lib » aws_elasticloadbalancing » CfnLoadBalancer » SourceSecurityGroupProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancing as elb } from 'aws-cdk-lib';
const sourceSecurityGroupProperty: elb.CfnLoadBalancer.SourceSecurityGroupProperty = {
groupName: 'groupName',
ownerAlias: 'ownerAlias',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The name of the security group that you can use as part of your inbound rules for your load balancer's back-end instances. |
| owner | string | The owner of the source security group. |
groupName?
Type:
string
(optional)
The name of the security group that you can use as part of your inbound rules for your load balancer's back-end instances.
ownerAlias?
Type:
string
(optional)
The owner of the source security group.

.NET
Go
Java
Python
TypeScript