Class CfnClusterSecurityGroupIngress
- All Implemented Interfaces:
IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
Depending on whether the application accessing your cluster is running on the Internet or an Amazon EC2 instance, you can authorize inbound access to either a Classless Interdomain Routing (CIDR)/Internet Protocol (IP) range or to an Amazon EC2 security group. You can add as many as 20 ingress rules to an Amazon Redshift security group.
If you authorize access to an Amazon EC2 security group, specify EC2SecurityGroupName and EC2SecurityGroupOwnerId . The Amazon EC2 security group and Amazon Redshift cluster must be in the same AWS Region .
If you authorize access to a CIDR/IP address range, specify CIDRIP . For an overview of CIDR blocks, see the Wikipedia article on Classless Inter-Domain Routing .
You must also associate the security group with a cluster so that clients running on these IP addresses or the EC2 instance are authorized to connect to the cluster. For information about managing security groups, go to Working with Security Groups in the Amazon Redshift Cluster Management Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.redshift.*; CfnClusterSecurityGroupIngress cfnClusterSecurityGroupIngress = CfnClusterSecurityGroupIngress.Builder.create(this, "MyCfnClusterSecurityGroupIngress") .clusterSecurityGroupName("clusterSecurityGroupName") // the properties below are optional .cidrip("cidrip") .ec2SecurityGroupName("ec2SecurityGroupName") .ec2SecurityGroupOwnerId("ec2SecurityGroupOwnerId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnClusterSecurityGroupIngress
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnClusterSecurityGroupIngress
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnClusterSecurityGroupIngress
(software.amazon.jsii.JsiiObjectRef objRef) CfnClusterSecurityGroupIngress
(software.constructs.Construct scope, String id, CfnClusterSecurityGroupIngressProps props) -
Method Summary
Modifier and TypeMethodDescriptionSpecifies an inbound (ingress) rule for an Amazon Redshift security group.The IP range to be added the Amazon Redshift security group.The name of the security group to which the ingress rule is added.The EC2 security group to be added the Amazon Redshift security group.The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
The IP range to be added the Amazon Redshift security group.void
The name of the security group to which the ingress rule is added.void
setEc2SecurityGroupName
(String value) The EC2 security group to be added the Amazon Redshift security group.void
setEc2SecurityGroupOwnerId
(String value) The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnClusterSecurityGroupIngress
protected CfnClusterSecurityGroupIngress(software.amazon.jsii.JsiiObjectRef objRef) -
CfnClusterSecurityGroupIngress
protected CfnClusterSecurityGroupIngress(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnClusterSecurityGroupIngress
@Stability(Stable) public CfnClusterSecurityGroupIngress(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnClusterSecurityGroupIngressProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrId
Specifies an inbound (ingress) rule for an Amazon Redshift security group. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getClusterSecurityGroupName
The name of the security group to which the ingress rule is added. -
setClusterSecurityGroupName
The name of the security group to which the ingress rule is added. -
getCidrip
The IP range to be added the Amazon Redshift security group. -
setCidrip
The IP range to be added the Amazon Redshift security group. -
getEc2SecurityGroupName
The EC2 security group to be added the Amazon Redshift security group. -
setEc2SecurityGroupName
The EC2 security group to be added the Amazon Redshift security group. -
getEc2SecurityGroupOwnerId
The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter. -
setEc2SecurityGroupOwnerId
The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter.
-