amazonka-ssm-1.6.1: Amazon Simple Systems Manager (SSM) SDK.

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

Network.AWS.SSM.DeleteAssociation

Contents

Description

Disassociates the specified Systems Manager document from the specified instance.

When you disassociate a document from an instance, it does not change the configuration of the instance. To change the configuration state of an instance after you disassociate a document, you must create a new document with the desired configuration and associate it with the instance.

Synopsis

Creating a Request

deleteAssociation :: DeleteAssociation Source #

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

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

data DeleteAssociation Source #

See: deleteAssociation smart constructor.

Instances
Eq DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Data DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Methods

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

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

toConstr :: DeleteAssociation -> Constr #

dataTypeOf :: DeleteAssociation -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Show DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Generic DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Associated Types

type Rep DeleteAssociation :: Type -> Type #

Hashable DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

ToJSON DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

AWSRequest DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Associated Types

type Rs DeleteAssociation :: Type #

ToHeaders DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

ToPath DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

ToQuery DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

NFData DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Methods

rnf :: DeleteAssociation -> () #

type Rep DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

type Rep DeleteAssociation = D1 (MetaData "DeleteAssociation" "Network.AWS.SSM.DeleteAssociation" "amazonka-ssm-1.6.1-7PbnocxNW5qAr7pEvzAy6Q" False) (C1 (MetaCons "DeleteAssociation'" PrefixI True) (S1 (MetaSel (Just "_daaAssociationId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_daaInstanceId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_daaName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))
type Rs DeleteAssociation Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Request Lenses

daaAssociationId :: Lens' DeleteAssociation (Maybe Text) Source #

The association ID that you want to delete.

daaInstanceId :: Lens' DeleteAssociation (Maybe Text) Source #

The ID of the instance.

daaName :: Lens' DeleteAssociation (Maybe Text) Source #

The name of the Systems Manager document.

Destructuring the Response

deleteAssociationResponse Source #

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

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

data DeleteAssociationResponse Source #

See: deleteAssociationResponse smart constructor.

Instances
Eq DeleteAssociationResponse Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Data DeleteAssociationResponse Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Methods

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

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

toConstr :: DeleteAssociationResponse -> Constr #

dataTypeOf :: DeleteAssociationResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DeleteAssociationResponse Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Show DeleteAssociationResponse Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Generic DeleteAssociationResponse Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

Associated Types

type Rep DeleteAssociationResponse :: Type -> Type #

NFData DeleteAssociationResponse Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

type Rep DeleteAssociationResponse Source # 
Instance details

Defined in Network.AWS.SSM.DeleteAssociation

type Rep DeleteAssociationResponse = D1 (MetaData "DeleteAssociationResponse" "Network.AWS.SSM.DeleteAssociation" "amazonka-ssm-1.6.1-7PbnocxNW5qAr7pEvzAy6Q" True) (C1 (MetaCons "DeleteAssociationResponse'" PrefixI True) (S1 (MetaSel (Just "_delrsResponseStatus") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int)))

Response Lenses