amazonka-redshift-1.4.5: Amazon Redshift SDK.

Copyright(c) 2013-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.Redshift.AuthorizeClusterSecurityGroupIngress

Contents

Description

Adds an inbound (ingress) rule to an Amazon Redshift security group. 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 CIDRIP address range, specify CIDRIP . For an overview of CIDR blocks, see the Wikipedia article on <http:en.wikipedia.orgwiki/Classless_Inter-Domain_Routing 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 .

Synopsis

Creating a Request

authorizeClusterSecurityGroupIngress Source #

Creates a value of AuthorizeClusterSecurityGroupIngress with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • acsgiEC2SecurityGroupOwnerId - The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable value. Example: 111122223333
  • acsgiEC2SecurityGroupName - The EC2 security group to be added the Amazon Redshift security group.
  • acsgiCIdRIP - The IP range to be added the Amazon Redshift security group.
  • acsgiClusterSecurityGroupName - The name of the security group to which the ingress rule is added.

data AuthorizeClusterSecurityGroupIngress Source #

See: authorizeClusterSecurityGroupIngress smart constructor.

Instances

Eq AuthorizeClusterSecurityGroupIngress Source # 
Data AuthorizeClusterSecurityGroupIngress Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> AuthorizeClusterSecurityGroupIngress -> c AuthorizeClusterSecurityGroupIngress #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c AuthorizeClusterSecurityGroupIngress #

toConstr :: AuthorizeClusterSecurityGroupIngress -> Constr #

dataTypeOf :: AuthorizeClusterSecurityGroupIngress -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c AuthorizeClusterSecurityGroupIngress) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c AuthorizeClusterSecurityGroupIngress) #

gmapT :: (forall b. Data b => b -> b) -> AuthorizeClusterSecurityGroupIngress -> AuthorizeClusterSecurityGroupIngress #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> AuthorizeClusterSecurityGroupIngress -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> AuthorizeClusterSecurityGroupIngress -> r #

gmapQ :: (forall d. Data d => d -> u) -> AuthorizeClusterSecurityGroupIngress -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> AuthorizeClusterSecurityGroupIngress -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> AuthorizeClusterSecurityGroupIngress -> m AuthorizeClusterSecurityGroupIngress #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> AuthorizeClusterSecurityGroupIngress -> m AuthorizeClusterSecurityGroupIngress #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> AuthorizeClusterSecurityGroupIngress -> m AuthorizeClusterSecurityGroupIngress #

Read AuthorizeClusterSecurityGroupIngress Source # 
Show AuthorizeClusterSecurityGroupIngress Source # 
Generic AuthorizeClusterSecurityGroupIngress Source # 
Hashable AuthorizeClusterSecurityGroupIngress Source # 
NFData AuthorizeClusterSecurityGroupIngress Source # 
AWSRequest AuthorizeClusterSecurityGroupIngress Source # 
ToPath AuthorizeClusterSecurityGroupIngress Source # 
ToHeaders AuthorizeClusterSecurityGroupIngress Source # 
ToQuery AuthorizeClusterSecurityGroupIngress Source # 
type Rep AuthorizeClusterSecurityGroupIngress Source # 
type Rep AuthorizeClusterSecurityGroupIngress = D1 (MetaData "AuthorizeClusterSecurityGroupIngress" "Network.AWS.Redshift.AuthorizeClusterSecurityGroupIngress" "amazonka-redshift-1.4.5-2iQeXmFrftS29tYZtVOT2g" False) (C1 (MetaCons "AuthorizeClusterSecurityGroupIngress'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_acsgiEC2SecurityGroupOwnerId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_acsgiEC2SecurityGroupName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_acsgiCIdRIP") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_acsgiClusterSecurityGroupName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs AuthorizeClusterSecurityGroupIngress Source # 

Request Lenses

acsgiEC2SecurityGroupOwnerId :: Lens' AuthorizeClusterSecurityGroupIngress (Maybe Text) Source #

The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable value. Example: 111122223333

acsgiEC2SecurityGroupName :: Lens' AuthorizeClusterSecurityGroupIngress (Maybe Text) Source #

The EC2 security group to be added the Amazon Redshift security group.

acsgiCIdRIP :: Lens' AuthorizeClusterSecurityGroupIngress (Maybe Text) Source #

The IP range to be added the Amazon Redshift security group.

acsgiClusterSecurityGroupName :: Lens' AuthorizeClusterSecurityGroupIngress Text Source #

The name of the security group to which the ingress rule is added.

Destructuring the Response

authorizeClusterSecurityGroupIngressResponse Source #

Creates a value of AuthorizeClusterSecurityGroupIngressResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data AuthorizeClusterSecurityGroupIngressResponse Source #

Instances

Eq AuthorizeClusterSecurityGroupIngressResponse Source # 
Data AuthorizeClusterSecurityGroupIngressResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> AuthorizeClusterSecurityGroupIngressResponse -> c AuthorizeClusterSecurityGroupIngressResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c AuthorizeClusterSecurityGroupIngressResponse #

toConstr :: AuthorizeClusterSecurityGroupIngressResponse -> Constr #

dataTypeOf :: AuthorizeClusterSecurityGroupIngressResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c AuthorizeClusterSecurityGroupIngressResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c AuthorizeClusterSecurityGroupIngressResponse) #

gmapT :: (forall b. Data b => b -> b) -> AuthorizeClusterSecurityGroupIngressResponse -> AuthorizeClusterSecurityGroupIngressResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> AuthorizeClusterSecurityGroupIngressResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> AuthorizeClusterSecurityGroupIngressResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> AuthorizeClusterSecurityGroupIngressResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> AuthorizeClusterSecurityGroupIngressResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> AuthorizeClusterSecurityGroupIngressResponse -> m AuthorizeClusterSecurityGroupIngressResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> AuthorizeClusterSecurityGroupIngressResponse -> m AuthorizeClusterSecurityGroupIngressResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> AuthorizeClusterSecurityGroupIngressResponse -> m AuthorizeClusterSecurityGroupIngressResponse #

Read AuthorizeClusterSecurityGroupIngressResponse Source # 
Show AuthorizeClusterSecurityGroupIngressResponse Source # 
Generic AuthorizeClusterSecurityGroupIngressResponse Source # 
NFData AuthorizeClusterSecurityGroupIngressResponse Source # 
type Rep AuthorizeClusterSecurityGroupIngressResponse Source # 
type Rep AuthorizeClusterSecurityGroupIngressResponse = D1 (MetaData "AuthorizeClusterSecurityGroupIngressResponse" "Network.AWS.Redshift.AuthorizeClusterSecurityGroupIngress" "amazonka-redshift-1.4.5-2iQeXmFrftS29tYZtVOT2g" False) (C1 (MetaCons "AuthorizeClusterSecurityGroupIngressResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_acsgirsClusterSecurityGroup") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ClusterSecurityGroup))) (S1 (MetaSel (Just Symbol "_acsgirsResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int))))

Response Lenses