interface SourceSecurityGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElasticLoadBalancing.CfnLoadBalancerPropsMixin.SourceSecurityGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticloadbalancing#CfnLoadBalancerPropsMixin_SourceSecurityGroupProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticloadbalancing.CfnLoadBalancerPropsMixin.SourceSecurityGroupProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticloadbalancing.CfnLoadBalancerPropsMixin.SourceSecurityGroupProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticloadbalancing » CfnLoadBalancerPropsMixin » 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 elasticloadbalancing } from '@aws-cdk/cfn-property-mixins';
const sourceSecurityGroupProperty: elasticloadbalancing.CfnLoadBalancerPropsMixin.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