packages feed

amazonka-codestar 1.5.0 → 1.6.0

raw patch · 29 files changed

+294/−287 lines, 29 filesdep ~amazonka-coredep ~amazonka-testPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core, amazonka-test

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.5.0`+`1.6.0`   ## Description
amazonka-codestar.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-codestar-version:               1.5.0+version:               1.6.0 synopsis:              Amazon CodeStar SDK. homepage:              https://github.com/brendanhay/amazonka bug-reports:           https://github.com/brendanhay/amazonka/issues@@ -7,7 +7,7 @@ license-file:          LICENSE author:                Brendan Hay maintainer:            Brendan Hay <brendan.g.hay+amazonka@gmail.com>-copyright:             Copyright (c) 2013-2017 Brendan Hay+copyright:             Copyright (c) 2013-2018 Brendan Hay category:              Network, AWS, Cloud, Distributed Computing build-type:            Simple cabal-version:         >= 1.10@@ -71,7 +71,7 @@         , Network.AWS.CodeStar.Types.Sum      build-depends:-          amazonka-core == 1.5.0.*+          amazonka-core == 1.6.0.*         , base          >= 4.7     && < 5  test-suite amazonka-codestar-test@@ -91,8 +91,8 @@         , Test.AWS.CodeStar.Internal      build-depends:-          amazonka-core == 1.5.0.*-        , amazonka-test == 1.5.0.*+          amazonka-core == 1.6.0.*+        , amazonka-test == 1.6.0.*         , amazonka-codestar         , base         , bytestring
gen/Network/AWS/CodeStar.hs view
@@ -5,7 +5,7 @@  -- | -- Module      : Network.AWS.CodeStar--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated
gen/Network/AWS/CodeStar/AssociateTeamMember.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.AssociateTeamMember--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -78,33 +78,33 @@     -> AssociateTeamMember associateTeamMember pProjectId_ pUserARN_ pProjectRole_ =   AssociateTeamMember'-  { _atmRemoteAccessAllowed = Nothing-  , _atmClientRequestToken = Nothing-  , _atmProjectId = pProjectId_-  , _atmUserARN = pUserARN_-  , _atmProjectRole = pProjectRole_-  }+    { _atmRemoteAccessAllowed = Nothing+    , _atmClientRequestToken = Nothing+    , _atmProjectId = pProjectId_+    , _atmUserARN = pUserARN_+    , _atmProjectRole = pProjectRole_+    }   -- | Whether the team member is allowed to use an SSH public/private key pair to remotely access project resources, for example Amazon EC2 instances. atmRemoteAccessAllowed :: Lens' AssociateTeamMember (Maybe Bool)-atmRemoteAccessAllowed = lens _atmRemoteAccessAllowed (\ s a -> s{_atmRemoteAccessAllowed = a});+atmRemoteAccessAllowed = lens _atmRemoteAccessAllowed (\ s a -> s{_atmRemoteAccessAllowed = a})  -- | A user- or system-generated token that identifies the entity that requested the team member association to the project. This token can be used to repeat the request. atmClientRequestToken :: Lens' AssociateTeamMember (Maybe Text)-atmClientRequestToken = lens _atmClientRequestToken (\ s a -> s{_atmClientRequestToken = a});+atmClientRequestToken = lens _atmClientRequestToken (\ s a -> s{_atmClientRequestToken = a})  -- | The ID of the project to which you will add the IAM user. atmProjectId :: Lens' AssociateTeamMember Text-atmProjectId = lens _atmProjectId (\ s a -> s{_atmProjectId = a});+atmProjectId = lens _atmProjectId (\ s a -> s{_atmProjectId = a})  -- | The Amazon Resource Name (ARN) for the IAM user you want to add to the AWS CodeStar project. atmUserARN :: Lens' AssociateTeamMember Text-atmUserARN = lens _atmUserARN (\ s a -> s{_atmUserARN = a});+atmUserARN = lens _atmUserARN (\ s a -> s{_atmUserARN = a})  -- | The AWS CodeStar project role that will apply to this user. This role determines what actions a user can take in an AWS CodeStar project. atmProjectRole :: Lens' AssociateTeamMember Text-atmProjectRole = lens _atmProjectRole (\ s a -> s{_atmProjectRole = a});+atmProjectRole = lens _atmProjectRole (\ s a -> s{_atmProjectRole = a})  instance AWSRequest AssociateTeamMember where         type Rs AssociateTeamMember =@@ -166,15 +166,17 @@     -> AssociateTeamMemberResponse associateTeamMemberResponse pResponseStatus_ =   AssociateTeamMemberResponse'-  {_atmrsClientRequestToken = Nothing, _atmrsResponseStatus = pResponseStatus_}+    { _atmrsClientRequestToken = Nothing+    , _atmrsResponseStatus = pResponseStatus_+    }   -- | The user- or system-generated token from the initial request that can be used to repeat the request. atmrsClientRequestToken :: Lens' AssociateTeamMemberResponse (Maybe Text)-atmrsClientRequestToken = lens _atmrsClientRequestToken (\ s a -> s{_atmrsClientRequestToken = a});+atmrsClientRequestToken = lens _atmrsClientRequestToken (\ s a -> s{_atmrsClientRequestToken = a})  -- | -- | The response status code. atmrsResponseStatus :: Lens' AssociateTeamMemberResponse Int-atmrsResponseStatus = lens _atmrsResponseStatus (\ s a -> s{_atmrsResponseStatus = a});+atmrsResponseStatus = lens _atmrsResponseStatus (\ s a -> s{_atmrsResponseStatus = a})  instance NFData AssociateTeamMemberResponse where
gen/Network/AWS/CodeStar/CreateProject.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.CreateProject--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -76,28 +76,28 @@     -> CreateProject createProject pName_ pId_ =   CreateProject'-  { _cpClientRequestToken = Nothing-  , _cpDescription = Nothing-  , _cpName = _Sensitive # pName_-  , _cpId = pId_-  }+    { _cpClientRequestToken = Nothing+    , _cpDescription = Nothing+    , _cpName = _Sensitive # pName_+    , _cpId = pId_+    }   -- | Reserved for future use. cpClientRequestToken :: Lens' CreateProject (Maybe Text)-cpClientRequestToken = lens _cpClientRequestToken (\ s a -> s{_cpClientRequestToken = a});+cpClientRequestToken = lens _cpClientRequestToken (\ s a -> s{_cpClientRequestToken = a})  -- | Reserved for future use. cpDescription :: Lens' CreateProject (Maybe Text)-cpDescription = lens _cpDescription (\ s a -> s{_cpDescription = a}) . mapping _Sensitive;+cpDescription = lens _cpDescription (\ s a -> s{_cpDescription = a}) . mapping _Sensitive  -- | Reserved for future use. cpName :: Lens' CreateProject Text-cpName = lens _cpName (\ s a -> s{_cpName = a}) . _Sensitive;+cpName = lens _cpName (\ s a -> s{_cpName = a}) . _Sensitive  -- | Reserved for future use. cpId :: Lens' CreateProject Text-cpId = lens _cpId (\ s a -> s{_cpId = a});+cpId = lens _cpId (\ s a -> s{_cpId = a})  instance AWSRequest CreateProject where         type Rs CreateProject = CreateProjectResponse@@ -169,32 +169,32 @@     -> CreateProjectResponse createProjectResponse pResponseStatus_ pId_ pArn_ =   CreateProjectResponse'-  { _cprsProjectTemplateId = Nothing-  , _cprsClientRequestToken = Nothing-  , _cprsResponseStatus = pResponseStatus_-  , _cprsId = pId_-  , _cprsArn = pArn_-  }+    { _cprsProjectTemplateId = Nothing+    , _cprsClientRequestToken = Nothing+    , _cprsResponseStatus = pResponseStatus_+    , _cprsId = pId_+    , _cprsArn = pArn_+    }   -- | Reserved for future use. cprsProjectTemplateId :: Lens' CreateProjectResponse (Maybe Text)-cprsProjectTemplateId = lens _cprsProjectTemplateId (\ s a -> s{_cprsProjectTemplateId = a});+cprsProjectTemplateId = lens _cprsProjectTemplateId (\ s a -> s{_cprsProjectTemplateId = a})  -- | Reserved for future use. cprsClientRequestToken :: Lens' CreateProjectResponse (Maybe Text)-cprsClientRequestToken = lens _cprsClientRequestToken (\ s a -> s{_cprsClientRequestToken = a});+cprsClientRequestToken = lens _cprsClientRequestToken (\ s a -> s{_cprsClientRequestToken = a})  -- | -- | The response status code. cprsResponseStatus :: Lens' CreateProjectResponse Int-cprsResponseStatus = lens _cprsResponseStatus (\ s a -> s{_cprsResponseStatus = a});+cprsResponseStatus = lens _cprsResponseStatus (\ s a -> s{_cprsResponseStatus = a})  -- | Reserved for future use. cprsId :: Lens' CreateProjectResponse Text-cprsId = lens _cprsId (\ s a -> s{_cprsId = a});+cprsId = lens _cprsId (\ s a -> s{_cprsId = a})  -- | Reserved for future use. cprsArn :: Lens' CreateProjectResponse Text-cprsArn = lens _cprsArn (\ s a -> s{_cprsArn = a});+cprsArn = lens _cprsArn (\ s a -> s{_cprsArn = a})  instance NFData CreateProjectResponse where
gen/Network/AWS/CodeStar/CreateUserProfile.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.CreateUserProfile--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -79,28 +79,28 @@     -> CreateUserProfile createUserProfile pUserARN_ pDisplayName_ pEmailAddress_ =   CreateUserProfile'-  { _cupSshPublicKey = Nothing-  , _cupUserARN = pUserARN_-  , _cupDisplayName = pDisplayName_-  , _cupEmailAddress = _Sensitive # pEmailAddress_-  }+    { _cupSshPublicKey = Nothing+    , _cupUserARN = pUserARN_+    , _cupDisplayName = pDisplayName_+    , _cupEmailAddress = _Sensitive # pEmailAddress_+    }   -- | The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access. cupSshPublicKey :: Lens' CreateUserProfile (Maybe Text)-cupSshPublicKey = lens _cupSshPublicKey (\ s a -> s{_cupSshPublicKey = a});+cupSshPublicKey = lens _cupSshPublicKey (\ s a -> s{_cupSshPublicKey = a})  -- | The Amazon Resource Name (ARN) of the user in IAM. cupUserARN :: Lens' CreateUserProfile Text-cupUserARN = lens _cupUserARN (\ s a -> s{_cupUserARN = a});+cupUserARN = lens _cupUserARN (\ s a -> s{_cupUserARN = a})  -- | The name that will be displayed as the friendly name for the user in AWS CodeStar. cupDisplayName :: Lens' CreateUserProfile Text-cupDisplayName = lens _cupDisplayName (\ s a -> s{_cupDisplayName = a});+cupDisplayName = lens _cupDisplayName (\ s a -> s{_cupDisplayName = a})  -- | The email address that will be displayed as part of the user's profile in AWS CodeStar. cupEmailAddress :: Lens' CreateUserProfile Text-cupEmailAddress = lens _cupEmailAddress (\ s a -> s{_cupEmailAddress = a}) . _Sensitive;+cupEmailAddress = lens _cupEmailAddress (\ s a -> s{_cupEmailAddress = a}) . _Sensitive  instance AWSRequest CreateUserProfile where         type Rs CreateUserProfile = CreateUserProfileResponse@@ -181,42 +181,42 @@     -> CreateUserProfileResponse createUserProfileResponse pResponseStatus_ pUserARN_ =   CreateUserProfileResponse'-  { _cuprsLastModifiedTimestamp = Nothing-  , _cuprsSshPublicKey = Nothing-  , _cuprsEmailAddress = Nothing-  , _cuprsDisplayName = Nothing-  , _cuprsCreatedTimestamp = Nothing-  , _cuprsResponseStatus = pResponseStatus_-  , _cuprsUserARN = pUserARN_-  }+    { _cuprsLastModifiedTimestamp = Nothing+    , _cuprsSshPublicKey = Nothing+    , _cuprsEmailAddress = Nothing+    , _cuprsDisplayName = Nothing+    , _cuprsCreatedTimestamp = Nothing+    , _cuprsResponseStatus = pResponseStatus_+    , _cuprsUserARN = pUserARN_+    }   -- | The date the user profile was last modified, in timestamp format. cuprsLastModifiedTimestamp :: Lens' CreateUserProfileResponse (Maybe UTCTime)-cuprsLastModifiedTimestamp = lens _cuprsLastModifiedTimestamp (\ s a -> s{_cuprsLastModifiedTimestamp = a}) . mapping _Time;+cuprsLastModifiedTimestamp = lens _cuprsLastModifiedTimestamp (\ s a -> s{_cuprsLastModifiedTimestamp = a}) . mapping _Time  -- | The SSH public key associated with the user in AWS CodeStar. This is the public portion of the public/private keypair the user can use to access project resources if a project owner allows the user remote access to those resources. cuprsSshPublicKey :: Lens' CreateUserProfileResponse (Maybe Text)-cuprsSshPublicKey = lens _cuprsSshPublicKey (\ s a -> s{_cuprsSshPublicKey = a});+cuprsSshPublicKey = lens _cuprsSshPublicKey (\ s a -> s{_cuprsSshPublicKey = a})  -- | The email address that is displayed as part of the user's profile in AWS CodeStar. cuprsEmailAddress :: Lens' CreateUserProfileResponse (Maybe Text)-cuprsEmailAddress = lens _cuprsEmailAddress (\ s a -> s{_cuprsEmailAddress = a}) . mapping _Sensitive;+cuprsEmailAddress = lens _cuprsEmailAddress (\ s a -> s{_cuprsEmailAddress = a}) . mapping _Sensitive  -- | The name that is displayed as the friendly name for the user in AWS CodeStar. cuprsDisplayName :: Lens' CreateUserProfileResponse (Maybe Text)-cuprsDisplayName = lens _cuprsDisplayName (\ s a -> s{_cuprsDisplayName = a});+cuprsDisplayName = lens _cuprsDisplayName (\ s a -> s{_cuprsDisplayName = a})  -- | The date the user profile was created, in timestamp format. cuprsCreatedTimestamp :: Lens' CreateUserProfileResponse (Maybe UTCTime)-cuprsCreatedTimestamp = lens _cuprsCreatedTimestamp (\ s a -> s{_cuprsCreatedTimestamp = a}) . mapping _Time;+cuprsCreatedTimestamp = lens _cuprsCreatedTimestamp (\ s a -> s{_cuprsCreatedTimestamp = a}) . mapping _Time  -- | -- | The response status code. cuprsResponseStatus :: Lens' CreateUserProfileResponse Int-cuprsResponseStatus = lens _cuprsResponseStatus (\ s a -> s{_cuprsResponseStatus = a});+cuprsResponseStatus = lens _cuprsResponseStatus (\ s a -> s{_cuprsResponseStatus = a})  -- | The Amazon Resource Name (ARN) of the user in IAM. cuprsUserARN :: Lens' CreateUserProfileResponse Text-cuprsUserARN = lens _cuprsUserARN (\ s a -> s{_cuprsUserARN = a});+cuprsUserARN = lens _cuprsUserARN (\ s a -> s{_cuprsUserARN = a})  instance NFData CreateUserProfileResponse where
gen/Network/AWS/CodeStar/DeleteProject.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.DeleteProject--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -69,20 +69,20 @@     -> DeleteProject deleteProject pId_ =   DeleteProject'-  {_dpDeleteStack = Nothing, _dpClientRequestToken = Nothing, _dpId = pId_}+    {_dpDeleteStack = Nothing, _dpClientRequestToken = Nothing, _dpId = pId_}   -- | Whether to send a delete request for the primary stack in AWS CloudFormation originally used to generate the project and its resources. This option will delete all AWS resources for the project (except for any buckets in Amazon S3) as well as deleting the project itself. Recommended for most use cases. dpDeleteStack :: Lens' DeleteProject (Maybe Bool)-dpDeleteStack = lens _dpDeleteStack (\ s a -> s{_dpDeleteStack = a});+dpDeleteStack = lens _dpDeleteStack (\ s a -> s{_dpDeleteStack = a})  -- | A user- or system-generated token that identifies the entity that requested project deletion. This token can be used to repeat the request. dpClientRequestToken :: Lens' DeleteProject (Maybe Text)-dpClientRequestToken = lens _dpClientRequestToken (\ s a -> s{_dpClientRequestToken = a});+dpClientRequestToken = lens _dpClientRequestToken (\ s a -> s{_dpClientRequestToken = a})  -- | The ID of the project to be deleted in AWS CodeStar. dpId :: Lens' DeleteProject Text-dpId = lens _dpId (\ s a -> s{_dpId = a});+dpId = lens _dpId (\ s a -> s{_dpId = a})  instance AWSRequest DeleteProject where         type Rs DeleteProject = DeleteProjectResponse@@ -143,22 +143,22 @@     -> DeleteProjectResponse deleteProjectResponse pResponseStatus_ =   DeleteProjectResponse'-  { _dprsProjectARN = Nothing-  , _dprsStackId = Nothing-  , _dprsResponseStatus = pResponseStatus_-  }+    { _dprsProjectARN = Nothing+    , _dprsStackId = Nothing+    , _dprsResponseStatus = pResponseStatus_+    }   -- | The Amazon Resource Name (ARN) of the deleted project. dprsProjectARN :: Lens' DeleteProjectResponse (Maybe Text)-dprsProjectARN = lens _dprsProjectARN (\ s a -> s{_dprsProjectARN = a});+dprsProjectARN = lens _dprsProjectARN (\ s a -> s{_dprsProjectARN = a})  -- | The ID of the primary stack in AWS CloudFormation that will be deleted as part of deleting the project and its resources. dprsStackId :: Lens' DeleteProjectResponse (Maybe Text)-dprsStackId = lens _dprsStackId (\ s a -> s{_dprsStackId = a});+dprsStackId = lens _dprsStackId (\ s a -> s{_dprsStackId = a})  -- | -- | The response status code. dprsResponseStatus :: Lens' DeleteProjectResponse Int-dprsResponseStatus = lens _dprsResponseStatus (\ s a -> s{_dprsResponseStatus = a});+dprsResponseStatus = lens _dprsResponseStatus (\ s a -> s{_dprsResponseStatus = a})  instance NFData DeleteProjectResponse where
gen/Network/AWS/CodeStar/DeleteUserProfile.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.DeleteUserProfile--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -63,7 +63,7 @@  -- | The Amazon Resource Name (ARN) of the user to delete from AWS CodeStar. dUserARN :: Lens' DeleteUserProfile Text-dUserARN = lens _dUserARN (\ s a -> s{_dUserARN = a});+dUserARN = lens _dUserARN (\ s a -> s{_dUserARN = a})  instance AWSRequest DeleteUserProfile where         type Rs DeleteUserProfile = DeleteUserProfileResponse@@ -118,15 +118,15 @@     -> DeleteUserProfileResponse deleteUserProfileResponse pResponseStatus_ pUserARN_ =   DeleteUserProfileResponse'-  {_delrsResponseStatus = pResponseStatus_, _delrsUserARN = pUserARN_}+    {_delrsResponseStatus = pResponseStatus_, _delrsUserARN = pUserARN_}   -- | -- | The response status code. delrsResponseStatus :: Lens' DeleteUserProfileResponse Int-delrsResponseStatus = lens _delrsResponseStatus (\ s a -> s{_delrsResponseStatus = a});+delrsResponseStatus = lens _delrsResponseStatus (\ s a -> s{_delrsResponseStatus = a})  -- | The Amazon Resource Name (ARN) of the user deleted from AWS CodeStar. delrsUserARN :: Lens' DeleteUserProfileResponse Text-delrsUserARN = lens _delrsUserARN (\ s a -> s{_delrsUserARN = a});+delrsUserARN = lens _delrsUserARN (\ s a -> s{_delrsUserARN = a})  instance NFData DeleteUserProfileResponse where
gen/Network/AWS/CodeStar/DescribeProject.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.DescribeProject--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -70,7 +70,7 @@  -- | The ID of the project. dId :: Lens' DescribeProject Text-dId = lens _dId (\ s a -> s{_dId = a});+dId = lens _dId (\ s a -> s{_dId = a})  instance AWSRequest DescribeProject where         type Rs DescribeProject = DescribeProjectResponse@@ -151,52 +151,52 @@     -> DescribeProjectResponse describeProjectResponse pResponseStatus_ =   DescribeProjectResponse'-  { _drsArn = Nothing-  , _drsProjectTemplateId = Nothing-  , _drsName = Nothing-  , _drsId = Nothing-  , _drsStackId = Nothing-  , _drsClientRequestToken = Nothing-  , _drsCreatedTimeStamp = Nothing-  , _drsDescription = Nothing-  , _drsResponseStatus = pResponseStatus_-  }+    { _drsArn = Nothing+    , _drsProjectTemplateId = Nothing+    , _drsName = Nothing+    , _drsId = Nothing+    , _drsStackId = Nothing+    , _drsClientRequestToken = Nothing+    , _drsCreatedTimeStamp = Nothing+    , _drsDescription = Nothing+    , _drsResponseStatus = pResponseStatus_+    }   -- | The Amazon Resource Name (ARN) for the project. drsArn :: Lens' DescribeProjectResponse (Maybe Text)-drsArn = lens _drsArn (\ s a -> s{_drsArn = a});+drsArn = lens _drsArn (\ s a -> s{_drsArn = a})  -- | The ID for the AWS CodeStar project template used to create the project. drsProjectTemplateId :: Lens' DescribeProjectResponse (Maybe Text)-drsProjectTemplateId = lens _drsProjectTemplateId (\ s a -> s{_drsProjectTemplateId = a});+drsProjectTemplateId = lens _drsProjectTemplateId (\ s a -> s{_drsProjectTemplateId = a})  -- | The display name for the project. drsName :: Lens' DescribeProjectResponse (Maybe Text)-drsName = lens _drsName (\ s a -> s{_drsName = a}) . mapping _Sensitive;+drsName = lens _drsName (\ s a -> s{_drsName = a}) . mapping _Sensitive  -- | The ID of the project. drsId :: Lens' DescribeProjectResponse (Maybe Text)-drsId = lens _drsId (\ s a -> s{_drsId = a});+drsId = lens _drsId (\ s a -> s{_drsId = a})  -- | The ID of the primary stack in AWS CloudFormation used to generate resources for the project. drsStackId :: Lens' DescribeProjectResponse (Maybe Text)-drsStackId = lens _drsStackId (\ s a -> s{_drsStackId = a});+drsStackId = lens _drsStackId (\ s a -> s{_drsStackId = a})  -- | A user- or system-generated token that identifies the entity that requested project creation. drsClientRequestToken :: Lens' DescribeProjectResponse (Maybe Text)-drsClientRequestToken = lens _drsClientRequestToken (\ s a -> s{_drsClientRequestToken = a});+drsClientRequestToken = lens _drsClientRequestToken (\ s a -> s{_drsClientRequestToken = a})  -- | The date and time the project was created, in timestamp format. drsCreatedTimeStamp :: Lens' DescribeProjectResponse (Maybe UTCTime)-drsCreatedTimeStamp = lens _drsCreatedTimeStamp (\ s a -> s{_drsCreatedTimeStamp = a}) . mapping _Time;+drsCreatedTimeStamp = lens _drsCreatedTimeStamp (\ s a -> s{_drsCreatedTimeStamp = a}) . mapping _Time  -- | The description of the project, if any. drsDescription :: Lens' DescribeProjectResponse (Maybe Text)-drsDescription = lens _drsDescription (\ s a -> s{_drsDescription = a}) . mapping _Sensitive;+drsDescription = lens _drsDescription (\ s a -> s{_drsDescription = a}) . mapping _Sensitive  -- | -- | The response status code. drsResponseStatus :: Lens' DescribeProjectResponse Int-drsResponseStatus = lens _drsResponseStatus (\ s a -> s{_drsResponseStatus = a});+drsResponseStatus = lens _drsResponseStatus (\ s a -> s{_drsResponseStatus = a})  instance NFData DescribeProjectResponse where
gen/Network/AWS/CodeStar/DescribeUserProfile.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.DescribeUserProfile--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -68,7 +68,7 @@  -- | The Amazon Resource Name (ARN) of the user. dupUserARN :: Lens' DescribeUserProfile Text-dupUserARN = lens _dupUserARN (\ s a -> s{_dupUserARN = a});+dupUserARN = lens _dupUserARN (\ s a -> s{_dupUserARN = a})  instance AWSRequest DescribeUserProfile where         type Rs DescribeUserProfile =@@ -147,42 +147,42 @@     -> DescribeUserProfileResponse describeUserProfileResponse pResponseStatus_ pUserARN_ pCreatedTimestamp_ pLastModifiedTimestamp_ =   DescribeUserProfileResponse'-  { _duprsSshPublicKey = Nothing-  , _duprsEmailAddress = Nothing-  , _duprsDisplayName = Nothing-  , _duprsResponseStatus = pResponseStatus_-  , _duprsUserARN = pUserARN_-  , _duprsCreatedTimestamp = _Time # pCreatedTimestamp_-  , _duprsLastModifiedTimestamp = _Time # pLastModifiedTimestamp_-  }+    { _duprsSshPublicKey = Nothing+    , _duprsEmailAddress = Nothing+    , _duprsDisplayName = Nothing+    , _duprsResponseStatus = pResponseStatus_+    , _duprsUserARN = pUserARN_+    , _duprsCreatedTimestamp = _Time # pCreatedTimestamp_+    , _duprsLastModifiedTimestamp = _Time # pLastModifiedTimestamp_+    }   -- | The SSH public key associated with the user. This SSH public key is associated with the user profile, and can be used in conjunction with the associated private key for access to project resources, such as Amazon EC2 instances, if a project owner grants remote access to those resources. duprsSshPublicKey :: Lens' DescribeUserProfileResponse (Maybe Text)-duprsSshPublicKey = lens _duprsSshPublicKey (\ s a -> s{_duprsSshPublicKey = a});+duprsSshPublicKey = lens _duprsSshPublicKey (\ s a -> s{_duprsSshPublicKey = a})  -- | The email address for the user. Optional. duprsEmailAddress :: Lens' DescribeUserProfileResponse (Maybe Text)-duprsEmailAddress = lens _duprsEmailAddress (\ s a -> s{_duprsEmailAddress = a}) . mapping _Sensitive;+duprsEmailAddress = lens _duprsEmailAddress (\ s a -> s{_duprsEmailAddress = a}) . mapping _Sensitive  -- | The display name shown for the user in AWS CodeStar projects. For example, this could be set to both first and last name ("Mary Major") or a single name ("Mary"). The display name is also used to generate the initial icon associated with the user in AWS CodeStar projects. If spaces are included in the display name, the first character that appears after the space will be used as the second character in the user initial icon. The initial icon displays a maximum of two characters, so a display name with more than one space (for example "Mary Jane Major") would generate an initial icon using the first character and the first character after the space ("MJ", not "MM"). duprsDisplayName :: Lens' DescribeUserProfileResponse (Maybe Text)-duprsDisplayName = lens _duprsDisplayName (\ s a -> s{_duprsDisplayName = a});+duprsDisplayName = lens _duprsDisplayName (\ s a -> s{_duprsDisplayName = a})  -- | -- | The response status code. duprsResponseStatus :: Lens' DescribeUserProfileResponse Int-duprsResponseStatus = lens _duprsResponseStatus (\ s a -> s{_duprsResponseStatus = a});+duprsResponseStatus = lens _duprsResponseStatus (\ s a -> s{_duprsResponseStatus = a})  -- | The Amazon Resource Name (ARN) of the user. duprsUserARN :: Lens' DescribeUserProfileResponse Text-duprsUserARN = lens _duprsUserARN (\ s a -> s{_duprsUserARN = a});+duprsUserARN = lens _duprsUserARN (\ s a -> s{_duprsUserARN = a})  -- | The date and time when the user profile was created in AWS CodeStar, in timestamp format. duprsCreatedTimestamp :: Lens' DescribeUserProfileResponse UTCTime-duprsCreatedTimestamp = lens _duprsCreatedTimestamp (\ s a -> s{_duprsCreatedTimestamp = a}) . _Time;+duprsCreatedTimestamp = lens _duprsCreatedTimestamp (\ s a -> s{_duprsCreatedTimestamp = a}) . _Time  -- | The date and time when the user profile was last modified, in timestamp format. duprsLastModifiedTimestamp :: Lens' DescribeUserProfileResponse UTCTime-duprsLastModifiedTimestamp = lens _duprsLastModifiedTimestamp (\ s a -> s{_duprsLastModifiedTimestamp = a}) . _Time;+duprsLastModifiedTimestamp = lens _duprsLastModifiedTimestamp (\ s a -> s{_duprsLastModifiedTimestamp = a}) . _Time  instance NFData DescribeUserProfileResponse where
gen/Network/AWS/CodeStar/DisassociateTeamMember.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.DisassociateTeamMember--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -68,11 +68,11 @@  -- | The ID of the AWS CodeStar project from which you want to remove a team member. dtmProjectId :: Lens' DisassociateTeamMember Text-dtmProjectId = lens _dtmProjectId (\ s a -> s{_dtmProjectId = a});+dtmProjectId = lens _dtmProjectId (\ s a -> s{_dtmProjectId = a})  -- | The Amazon Resource Name (ARN) of the IAM user or group whom you want to remove from the project. dtmUserARN :: Lens' DisassociateTeamMember Text-dtmUserARN = lens _dtmUserARN (\ s a -> s{_dtmUserARN = a});+dtmUserARN = lens _dtmUserARN (\ s a -> s{_dtmUserARN = a})  instance AWSRequest DisassociateTeamMember where         type Rs DisassociateTeamMember =@@ -131,6 +131,6 @@  -- | -- | The response status code. dtmrsResponseStatus :: Lens' DisassociateTeamMemberResponse Int-dtmrsResponseStatus = lens _dtmrsResponseStatus (\ s a -> s{_dtmrsResponseStatus = a});+dtmrsResponseStatus = lens _dtmrsResponseStatus (\ s a -> s{_dtmrsResponseStatus = a})  instance NFData DisassociateTeamMemberResponse where
gen/Network/AWS/CodeStar/ListProjects.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.ListProjects--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -67,11 +67,11 @@  -- | The continuation token to be used to return the next set of results, if the results cannot be returned in one response. lpNextToken :: Lens' ListProjects (Maybe Text)-lpNextToken = lens _lpNextToken (\ s a -> s{_lpNextToken = a});+lpNextToken = lens _lpNextToken (\ s a -> s{_lpNextToken = a})  -- | The maximum amount of data that can be contained in a single set of results. lpMaxResults :: Lens' ListProjects (Maybe Natural)-lpMaxResults = lens _lpMaxResults (\ s a -> s{_lpMaxResults = a}) . mapping _Nat;+lpMaxResults = lens _lpMaxResults (\ s a -> s{_lpMaxResults = a}) . mapping _Nat  instance AWSRequest ListProjects where         type Rs ListProjects = ListProjectsResponse@@ -131,22 +131,22 @@     -> ListProjectsResponse listProjectsResponse pResponseStatus_ =   ListProjectsResponse'-  { _lprsNextToken = Nothing-  , _lprsResponseStatus = pResponseStatus_-  , _lprsProjects = mempty-  }+    { _lprsNextToken = Nothing+    , _lprsResponseStatus = pResponseStatus_+    , _lprsProjects = mempty+    }   -- | The continuation token to use when requesting the next set of results, if there are more results to be returned. lprsNextToken :: Lens' ListProjectsResponse (Maybe Text)-lprsNextToken = lens _lprsNextToken (\ s a -> s{_lprsNextToken = a});+lprsNextToken = lens _lprsNextToken (\ s a -> s{_lprsNextToken = a})  -- | -- | The response status code. lprsResponseStatus :: Lens' ListProjectsResponse Int-lprsResponseStatus = lens _lprsResponseStatus (\ s a -> s{_lprsResponseStatus = a});+lprsResponseStatus = lens _lprsResponseStatus (\ s a -> s{_lprsResponseStatus = a})  -- | A list of projects. lprsProjects :: Lens' ListProjectsResponse [ProjectSummary]-lprsProjects = lens _lprsProjects (\ s a -> s{_lprsProjects = a}) . _Coerce;+lprsProjects = lens _lprsProjects (\ s a -> s{_lprsProjects = a}) . _Coerce  instance NFData ListProjectsResponse where
gen/Network/AWS/CodeStar/ListResources.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.ListResources--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -69,20 +69,23 @@     -> ListResources listResources pProjectId_ =   ListResources'-  {_lrNextToken = Nothing, _lrMaxResults = Nothing, _lrProjectId = pProjectId_}+    { _lrNextToken = Nothing+    , _lrMaxResults = Nothing+    , _lrProjectId = pProjectId_+    }   -- | The continuation token for the next set of results, if the results cannot be returned in one response. lrNextToken :: Lens' ListResources (Maybe Text)-lrNextToken = lens _lrNextToken (\ s a -> s{_lrNextToken = a});+lrNextToken = lens _lrNextToken (\ s a -> s{_lrNextToken = a})  -- | The maximum amount of data that can be contained in a single set of results. lrMaxResults :: Lens' ListResources (Maybe Natural)-lrMaxResults = lens _lrMaxResults (\ s a -> s{_lrMaxResults = a}) . mapping _Nat;+lrMaxResults = lens _lrMaxResults (\ s a -> s{_lrMaxResults = a}) . mapping _Nat  -- | The ID of the project. lrProjectId :: Lens' ListResources Text-lrProjectId = lens _lrProjectId (\ s a -> s{_lrProjectId = a});+lrProjectId = lens _lrProjectId (\ s a -> s{_lrProjectId = a})  instance AWSRequest ListResources where         type Rs ListResources = ListResourcesResponse@@ -144,22 +147,22 @@     -> ListResourcesResponse listResourcesResponse pResponseStatus_ =   ListResourcesResponse'-  { _lrrsResources = Nothing-  , _lrrsNextToken = Nothing-  , _lrrsResponseStatus = pResponseStatus_-  }+    { _lrrsResources = Nothing+    , _lrrsNextToken = Nothing+    , _lrrsResponseStatus = pResponseStatus_+    }   -- | An array of resources associated with the project. lrrsResources :: Lens' ListResourcesResponse [Resource]-lrrsResources = lens _lrrsResources (\ s a -> s{_lrrsResources = a}) . _Default . _Coerce;+lrrsResources = lens _lrrsResources (\ s a -> s{_lrrsResources = a}) . _Default . _Coerce  -- | The continuation token to use when requesting the next set of results, if there are more results to be returned. lrrsNextToken :: Lens' ListResourcesResponse (Maybe Text)-lrrsNextToken = lens _lrrsNextToken (\ s a -> s{_lrrsNextToken = a});+lrrsNextToken = lens _lrrsNextToken (\ s a -> s{_lrrsNextToken = a})  -- | -- | The response status code. lrrsResponseStatus :: Lens' ListResourcesResponse Int-lrrsResponseStatus = lens _lrrsResponseStatus (\ s a -> s{_lrrsResponseStatus = a});+lrrsResponseStatus = lens _lrrsResponseStatus (\ s a -> s{_lrrsResponseStatus = a})  instance NFData ListResourcesResponse where
gen/Network/AWS/CodeStar/ListTagsForProject.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.ListTagsForProject--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -69,20 +69,20 @@     -> ListTagsForProject listTagsForProject pId_ =   ListTagsForProject'-  {_ltfpNextToken = Nothing, _ltfpMaxResults = Nothing, _ltfpId = pId_}+    {_ltfpNextToken = Nothing, _ltfpMaxResults = Nothing, _ltfpId = pId_}   -- | Reserved for future use. ltfpNextToken :: Lens' ListTagsForProject (Maybe Text)-ltfpNextToken = lens _ltfpNextToken (\ s a -> s{_ltfpNextToken = a});+ltfpNextToken = lens _ltfpNextToken (\ s a -> s{_ltfpNextToken = a})  -- | Reserved for future use. ltfpMaxResults :: Lens' ListTagsForProject (Maybe Natural)-ltfpMaxResults = lens _ltfpMaxResults (\ s a -> s{_ltfpMaxResults = a}) . mapping _Nat;+ltfpMaxResults = lens _ltfpMaxResults (\ s a -> s{_ltfpMaxResults = a}) . mapping _Nat  -- | The ID of the project to get tags for. ltfpId :: Lens' ListTagsForProject Text-ltfpId = lens _ltfpId (\ s a -> s{_ltfpId = a});+ltfpId = lens _ltfpId (\ s a -> s{_ltfpId = a})  instance AWSRequest ListTagsForProject where         type Rs ListTagsForProject =@@ -145,22 +145,22 @@     -> ListTagsForProjectResponse listTagsForProjectResponse pResponseStatus_ =   ListTagsForProjectResponse'-  { _ltfprsNextToken = Nothing-  , _ltfprsTags = Nothing-  , _ltfprsResponseStatus = pResponseStatus_-  }+    { _ltfprsNextToken = Nothing+    , _ltfprsTags = Nothing+    , _ltfprsResponseStatus = pResponseStatus_+    }   -- | Reserved for future use. ltfprsNextToken :: Lens' ListTagsForProjectResponse (Maybe Text)-ltfprsNextToken = lens _ltfprsNextToken (\ s a -> s{_ltfprsNextToken = a});+ltfprsNextToken = lens _ltfprsNextToken (\ s a -> s{_ltfprsNextToken = a})  -- | The tags for the project. ltfprsTags :: Lens' ListTagsForProjectResponse (HashMap Text Text)-ltfprsTags = lens _ltfprsTags (\ s a -> s{_ltfprsTags = a}) . _Default . _Map;+ltfprsTags = lens _ltfprsTags (\ s a -> s{_ltfprsTags = a}) . _Default . _Map  -- | -- | The response status code. ltfprsResponseStatus :: Lens' ListTagsForProjectResponse Int-ltfprsResponseStatus = lens _ltfprsResponseStatus (\ s a -> s{_ltfprsResponseStatus = a});+ltfprsResponseStatus = lens _ltfprsResponseStatus (\ s a -> s{_ltfprsResponseStatus = a})  instance NFData ListTagsForProjectResponse where
gen/Network/AWS/CodeStar/ListTeamMembers.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.ListTeamMembers--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -69,23 +69,23 @@     -> ListTeamMembers listTeamMembers pProjectId_ =   ListTeamMembers'-  { _ltmNextToken = Nothing-  , _ltmMaxResults = Nothing-  , _ltmProjectId = pProjectId_-  }+    { _ltmNextToken = Nothing+    , _ltmMaxResults = Nothing+    , _ltmProjectId = pProjectId_+    }   -- | The continuation token for the next set of results, if the results cannot be returned in one response. ltmNextToken :: Lens' ListTeamMembers (Maybe Text)-ltmNextToken = lens _ltmNextToken (\ s a -> s{_ltmNextToken = a});+ltmNextToken = lens _ltmNextToken (\ s a -> s{_ltmNextToken = a})  -- | The maximum number of team members you want returned in a response. ltmMaxResults :: Lens' ListTeamMembers (Maybe Natural)-ltmMaxResults = lens _ltmMaxResults (\ s a -> s{_ltmMaxResults = a}) . mapping _Nat;+ltmMaxResults = lens _ltmMaxResults (\ s a -> s{_ltmMaxResults = a}) . mapping _Nat  -- | The ID of the project for which you want to list team members. ltmProjectId :: Lens' ListTeamMembers Text-ltmProjectId = lens _ltmProjectId (\ s a -> s{_ltmProjectId = a});+ltmProjectId = lens _ltmProjectId (\ s a -> s{_ltmProjectId = a})  instance AWSRequest ListTeamMembers where         type Rs ListTeamMembers = ListTeamMembersResponse@@ -146,22 +146,22 @@     -> ListTeamMembersResponse listTeamMembersResponse pResponseStatus_ =   ListTeamMembersResponse'-  { _ltmrsNextToken = Nothing-  , _ltmrsResponseStatus = pResponseStatus_-  , _ltmrsTeamMembers = mempty-  }+    { _ltmrsNextToken = Nothing+    , _ltmrsResponseStatus = pResponseStatus_+    , _ltmrsTeamMembers = mempty+    }   -- | The continuation token to use when requesting the next set of results, if there are more results to be returned. ltmrsNextToken :: Lens' ListTeamMembersResponse (Maybe Text)-ltmrsNextToken = lens _ltmrsNextToken (\ s a -> s{_ltmrsNextToken = a});+ltmrsNextToken = lens _ltmrsNextToken (\ s a -> s{_ltmrsNextToken = a})  -- | -- | The response status code. ltmrsResponseStatus :: Lens' ListTeamMembersResponse Int-ltmrsResponseStatus = lens _ltmrsResponseStatus (\ s a -> s{_ltmrsResponseStatus = a});+ltmrsResponseStatus = lens _ltmrsResponseStatus (\ s a -> s{_ltmrsResponseStatus = a})  -- | A list of team member objects for the project. ltmrsTeamMembers :: Lens' ListTeamMembersResponse [TeamMember]-ltmrsTeamMembers = lens _ltmrsTeamMembers (\ s a -> s{_ltmrsTeamMembers = a}) . _Coerce;+ltmrsTeamMembers = lens _ltmrsTeamMembers (\ s a -> s{_ltmrsTeamMembers = a}) . _Coerce  instance NFData ListTeamMembersResponse where
gen/Network/AWS/CodeStar/ListUserProfiles.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.ListUserProfiles--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -68,11 +68,11 @@  -- | The continuation token for the next set of results, if the results cannot be returned in one response. lupNextToken :: Lens' ListUserProfiles (Maybe Text)-lupNextToken = lens _lupNextToken (\ s a -> s{_lupNextToken = a});+lupNextToken = lens _lupNextToken (\ s a -> s{_lupNextToken = a})  -- | The maximum number of results to return in a response. lupMaxResults :: Lens' ListUserProfiles (Maybe Natural)-lupMaxResults = lens _lupMaxResults (\ s a -> s{_lupMaxResults = a}) . mapping _Nat;+lupMaxResults = lens _lupMaxResults (\ s a -> s{_lupMaxResults = a}) . mapping _Nat  instance AWSRequest ListUserProfiles where         type Rs ListUserProfiles = ListUserProfilesResponse@@ -132,22 +132,22 @@     -> ListUserProfilesResponse listUserProfilesResponse pResponseStatus_ =   ListUserProfilesResponse'-  { _luprsNextToken = Nothing-  , _luprsResponseStatus = pResponseStatus_-  , _luprsUserProfiles = mempty-  }+    { _luprsNextToken = Nothing+    , _luprsResponseStatus = pResponseStatus_+    , _luprsUserProfiles = mempty+    }   -- | The continuation token to use when requesting the next set of results, if there are more results to be returned. luprsNextToken :: Lens' ListUserProfilesResponse (Maybe Text)-luprsNextToken = lens _luprsNextToken (\ s a -> s{_luprsNextToken = a});+luprsNextToken = lens _luprsNextToken (\ s a -> s{_luprsNextToken = a})  -- | -- | The response status code. luprsResponseStatus :: Lens' ListUserProfilesResponse Int-luprsResponseStatus = lens _luprsResponseStatus (\ s a -> s{_luprsResponseStatus = a});+luprsResponseStatus = lens _luprsResponseStatus (\ s a -> s{_luprsResponseStatus = a})  -- | All the user profiles configured in AWS CodeStar for an AWS account. luprsUserProfiles :: Lens' ListUserProfilesResponse [UserProfileSummary]-luprsUserProfiles = lens _luprsUserProfiles (\ s a -> s{_luprsUserProfiles = a}) . _Coerce;+luprsUserProfiles = lens _luprsUserProfiles (\ s a -> s{_luprsUserProfiles = a}) . _Coerce  instance NFData ListUserProfilesResponse where
gen/Network/AWS/CodeStar/TagProject.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.TagProject--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -67,11 +67,11 @@  -- | The ID of the project you want to add a tag to. tpId :: Lens' TagProject Text-tpId = lens _tpId (\ s a -> s{_tpId = a});+tpId = lens _tpId (\ s a -> s{_tpId = a})  -- | The tags you want to add to the project. tpTags :: Lens' TagProject (HashMap Text Text)-tpTags = lens _tpTags (\ s a -> s{_tpTags = a}) . _Map;+tpTags = lens _tpTags (\ s a -> s{_tpTags = a}) . _Map  instance AWSRequest TagProject where         type Rs TagProject = TagProjectResponse@@ -126,15 +126,15 @@     -> TagProjectResponse tagProjectResponse pResponseStatus_ =   TagProjectResponse'-  {_tprsTags = Nothing, _tprsResponseStatus = pResponseStatus_}+    {_tprsTags = Nothing, _tprsResponseStatus = pResponseStatus_}   -- | The tags for the project. tprsTags :: Lens' TagProjectResponse (HashMap Text Text)-tprsTags = lens _tprsTags (\ s a -> s{_tprsTags = a}) . _Default . _Map;+tprsTags = lens _tprsTags (\ s a -> s{_tprsTags = a}) . _Default . _Map  -- | -- | The response status code. tprsResponseStatus :: Lens' TagProjectResponse Int-tprsResponseStatus = lens _tprsResponseStatus (\ s a -> s{_tprsResponseStatus = a});+tprsResponseStatus = lens _tprsResponseStatus (\ s a -> s{_tprsResponseStatus = a})  instance NFData TagProjectResponse where
gen/Network/AWS/CodeStar/Types.hs view
@@ -4,7 +4,7 @@  -- | -- Module      : Network.AWS.CodeStar.Types--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -67,24 +67,24 @@ codeStar :: Service codeStar =   Service-  { _svcAbbrev = "CodeStar"-  , _svcSigner = v4-  , _svcPrefix = "codestar"-  , _svcVersion = "2017-04-19"-  , _svcEndpoint = defaultEndpoint codeStar-  , _svcTimeout = Just 70-  , _svcCheck = statusSuccess-  , _svcError = parseJSONError "CodeStar"-  , _svcRetry = retry-  }+    { _svcAbbrev = "CodeStar"+    , _svcSigner = v4+    , _svcPrefix = "codestar"+    , _svcVersion = "2017-04-19"+    , _svcEndpoint = defaultEndpoint codeStar+    , _svcTimeout = Just 70+    , _svcCheck = statusSuccess+    , _svcError = parseJSONError "CodeStar"+    , _svcRetry = retry+    }   where     retry =       Exponential-      { _retryBase = 5.0e-2-      , _retryGrowth = 2-      , _retryAttempts = 5-      , _retryCheck = check-      }+        { _retryBase = 5.0e-2+        , _retryGrowth = 2+        , _retryAttempts = 5+        , _retryCheck = check+        }     check e       | has (hasCode "ThrottledException" . hasStatus 400) e =         Just "throttled_exception"@@ -93,6 +93,8 @@         Just "throttling_exception"       | has (hasCode "Throttling" . hasStatus 400) e = Just "throttling"       | has (hasStatus 504) e = Just "gateway_timeout"+      | has (hasCode "RequestThrottledException" . hasStatus 400) e =+        Just "request_throttled_exception"       | has (hasStatus 502) e = Just "bad_gateway"       | has (hasStatus 503) e = Just "service_unavailable"       | has (hasStatus 500) e = Just "general_server_error"
gen/Network/AWS/CodeStar/Types/Product.hs view
@@ -9,7 +9,7 @@  -- | -- Module      : Network.AWS.CodeStar.Types.Product--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -47,11 +47,11 @@  -- | The Amazon Resource Name (ARN) of the project. psProjectARN :: Lens' ProjectSummary (Maybe Text)-psProjectARN = lens _psProjectARN (\ s a -> s{_psProjectARN = a});+psProjectARN = lens _psProjectARN (\ s a -> s{_psProjectARN = a})  -- | The ID of the project. psProjectId :: Lens' ProjectSummary (Maybe Text)-psProjectId = lens _psProjectId (\ s a -> s{_psProjectId = a});+psProjectId = lens _psProjectId (\ s a -> s{_psProjectId = a})  instance FromJSON ProjectSummary where         parseJSON@@ -87,7 +87,7 @@  -- | The Amazon Resource Name (ARN) of the resource. rId :: Lens' Resource Text-rId = lens _rId (\ s a -> s{_rId = a});+rId = lens _rId (\ s a -> s{_rId = a})  instance FromJSON Resource where         parseJSON@@ -125,23 +125,23 @@     -> TeamMember teamMember pUserARN_ pProjectRole_ =   TeamMember'-  { _tmRemoteAccessAllowed = Nothing-  , _tmUserARN = pUserARN_-  , _tmProjectRole = pProjectRole_-  }+    { _tmRemoteAccessAllowed = Nothing+    , _tmUserARN = pUserARN_+    , _tmProjectRole = pProjectRole_+    }   -- | Whether the user is allowed to remotely access project resources using an SSH public/private key pair. tmRemoteAccessAllowed :: Lens' TeamMember (Maybe Bool)-tmRemoteAccessAllowed = lens _tmRemoteAccessAllowed (\ s a -> s{_tmRemoteAccessAllowed = a});+tmRemoteAccessAllowed = lens _tmRemoteAccessAllowed (\ s a -> s{_tmRemoteAccessAllowed = a})  -- | The Amazon Resource Name (ARN) of the user in IAM. tmUserARN :: Lens' TeamMember Text-tmUserARN = lens _tmUserARN (\ s a -> s{_tmUserARN = a});+tmUserARN = lens _tmUserARN (\ s a -> s{_tmUserARN = a})  -- | The role assigned to the user in the project. Project roles have different levels of access. For more information, see <http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html Working with Teams> in the /AWS CodeStar User Guide/ . tmProjectRole :: Lens' TeamMember Text-tmProjectRole = lens _tmProjectRole (\ s a -> s{_tmProjectRole = a});+tmProjectRole = lens _tmProjectRole (\ s a -> s{_tmProjectRole = a})  instance FromJSON TeamMember where         parseJSON@@ -183,28 +183,28 @@     :: UserProfileSummary userProfileSummary =   UserProfileSummary'-  { _upsSshPublicKey = Nothing-  , _upsUserARN = Nothing-  , _upsEmailAddress = Nothing-  , _upsDisplayName = Nothing-  }+    { _upsSshPublicKey = Nothing+    , _upsUserARN = Nothing+    , _upsEmailAddress = Nothing+    , _upsDisplayName = Nothing+    }   -- | The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access. upsSshPublicKey :: Lens' UserProfileSummary (Maybe Text)-upsSshPublicKey = lens _upsSshPublicKey (\ s a -> s{_upsSshPublicKey = a});+upsSshPublicKey = lens _upsSshPublicKey (\ s a -> s{_upsSshPublicKey = a})  -- | The Amazon Resource Name (ARN) of the user in IAM. upsUserARN :: Lens' UserProfileSummary (Maybe Text)-upsUserARN = lens _upsUserARN (\ s a -> s{_upsUserARN = a});+upsUserARN = lens _upsUserARN (\ s a -> s{_upsUserARN = a})  -- | The email address associated with the user. upsEmailAddress :: Lens' UserProfileSummary (Maybe Text)-upsEmailAddress = lens _upsEmailAddress (\ s a -> s{_upsEmailAddress = a}) . mapping _Sensitive;+upsEmailAddress = lens _upsEmailAddress (\ s a -> s{_upsEmailAddress = a}) . mapping _Sensitive  -- | The display name of a user in AWS CodeStar. For example, this could be set to both first and last name ("Mary Major") or a single name ("Mary"). The display name is also used to generate the initial icon associated with the user in AWS CodeStar projects. If spaces are included in the display name, the first character that appears after the space will be used as the second character in the user initial icon. The initial icon displays a maximum of two characters, so a display name with more than one space (for example "Mary Jane Major") would generate an initial icon using the first character and the first character after the space ("MJ", not "MM"). upsDisplayName :: Lens' UserProfileSummary (Maybe Text)-upsDisplayName = lens _upsDisplayName (\ s a -> s{_upsDisplayName = a});+upsDisplayName = lens _upsDisplayName (\ s a -> s{_upsDisplayName = a})  instance FromJSON UserProfileSummary where         parseJSON
gen/Network/AWS/CodeStar/Types/Sum.hs view
@@ -9,7 +9,7 @@  -- | -- Module      : Network.AWS.CodeStar.Types.Sum--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated
gen/Network/AWS/CodeStar/UntagProject.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.UntagProject--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -66,11 +66,11 @@  -- | The ID of the project to remove tags from. uId :: Lens' UntagProject Text-uId = lens _uId (\ s a -> s{_uId = a});+uId = lens _uId (\ s a -> s{_uId = a})  -- | The tags to remove from the project. uTags :: Lens' UntagProject [Text]-uTags = lens _uTags (\ s a -> s{_uTags = a}) . _Coerce;+uTags = lens _uTags (\ s a -> s{_uTags = a}) . _Coerce  instance AWSRequest UntagProject where         type Rs UntagProject = UntagProjectResponse@@ -125,6 +125,6 @@  -- | -- | The response status code. ursResponseStatus :: Lens' UntagProjectResponse Int-ursResponseStatus = lens _ursResponseStatus (\ s a -> s{_ursResponseStatus = a});+ursResponseStatus = lens _ursResponseStatus (\ s a -> s{_ursResponseStatus = a})  instance NFData UntagProjectResponse where
gen/Network/AWS/CodeStar/UpdateProject.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.UpdateProject--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -71,15 +71,15 @@  -- | The name of the project you want to update. upName :: Lens' UpdateProject (Maybe Text)-upName = lens _upName (\ s a -> s{_upName = a}) . mapping _Sensitive;+upName = lens _upName (\ s a -> s{_upName = a}) . mapping _Sensitive  -- | The description of the project, if any. upDescription :: Lens' UpdateProject (Maybe Text)-upDescription = lens _upDescription (\ s a -> s{_upDescription = a}) . mapping _Sensitive;+upDescription = lens _upDescription (\ s a -> s{_upDescription = a}) . mapping _Sensitive  -- | The ID of the project you want to update. upId :: Lens' UpdateProject Text-upId = lens _upId (\ s a -> s{_upId = a});+upId = lens _upId (\ s a -> s{_upId = a})  instance AWSRequest UpdateProject where         type Rs UpdateProject = UpdateProjectResponse@@ -136,6 +136,6 @@  -- | -- | The response status code. uprsResponseStatus :: Lens' UpdateProjectResponse Int-uprsResponseStatus = lens _uprsResponseStatus (\ s a -> s{_uprsResponseStatus = a});+uprsResponseStatus = lens _uprsResponseStatus (\ s a -> s{_uprsResponseStatus = a})  instance NFData UpdateProjectResponse where
gen/Network/AWS/CodeStar/UpdateTeamMember.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.UpdateTeamMember--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -75,28 +75,28 @@     -> UpdateTeamMember updateTeamMember pProjectId_ pUserARN_ =   UpdateTeamMember'-  { _utmRemoteAccessAllowed = Nothing-  , _utmProjectRole = Nothing-  , _utmProjectId = pProjectId_-  , _utmUserARN = pUserARN_-  }+    { _utmRemoteAccessAllowed = Nothing+    , _utmProjectRole = Nothing+    , _utmProjectId = pProjectId_+    , _utmUserARN = pUserARN_+    }   -- | Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile. Even if this is set to True, the user must associate a public key with their profile before the user can access resources. utmRemoteAccessAllowed :: Lens' UpdateTeamMember (Maybe Bool)-utmRemoteAccessAllowed = lens _utmRemoteAccessAllowed (\ s a -> s{_utmRemoteAccessAllowed = a});+utmRemoteAccessAllowed = lens _utmRemoteAccessAllowed (\ s a -> s{_utmRemoteAccessAllowed = a})  -- | The role assigned to the user in the project. Project roles have different levels of access. For more information, see <http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html Working with Teams> in the /AWS CodeStar User Guide/ . utmProjectRole :: Lens' UpdateTeamMember (Maybe Text)-utmProjectRole = lens _utmProjectRole (\ s a -> s{_utmProjectRole = a});+utmProjectRole = lens _utmProjectRole (\ s a -> s{_utmProjectRole = a})  -- | The ID of the project. utmProjectId :: Lens' UpdateTeamMember Text-utmProjectId = lens _utmProjectId (\ s a -> s{_utmProjectId = a});+utmProjectId = lens _utmProjectId (\ s a -> s{_utmProjectId = a})  -- | The Amazon Resource Name (ARN) of the user for whom you want to change team membership attributes. utmUserARN :: Lens' UpdateTeamMember Text-utmUserARN = lens _utmUserARN (\ s a -> s{_utmUserARN = a});+utmUserARN = lens _utmUserARN (\ s a -> s{_utmUserARN = a})  instance AWSRequest UpdateTeamMember where         type Rs UpdateTeamMember = UpdateTeamMemberResponse@@ -163,27 +163,27 @@     -> UpdateTeamMemberResponse updateTeamMemberResponse pResponseStatus_ =   UpdateTeamMemberResponse'-  { _utmrsUserARN = Nothing-  , _utmrsRemoteAccessAllowed = Nothing-  , _utmrsProjectRole = Nothing-  , _utmrsResponseStatus = pResponseStatus_-  }+    { _utmrsUserARN = Nothing+    , _utmrsRemoteAccessAllowed = Nothing+    , _utmrsProjectRole = Nothing+    , _utmrsResponseStatus = pResponseStatus_+    }   -- | The Amazon Resource Name (ARN) of the user whose team membership attributes were updated. utmrsUserARN :: Lens' UpdateTeamMemberResponse (Maybe Text)-utmrsUserARN = lens _utmrsUserARN (\ s a -> s{_utmrsUserARN = a});+utmrsUserARN = lens _utmrsUserARN (\ s a -> s{_utmrsUserARN = a})  -- | Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile. utmrsRemoteAccessAllowed :: Lens' UpdateTeamMemberResponse (Maybe Bool)-utmrsRemoteAccessAllowed = lens _utmrsRemoteAccessAllowed (\ s a -> s{_utmrsRemoteAccessAllowed = a});+utmrsRemoteAccessAllowed = lens _utmrsRemoteAccessAllowed (\ s a -> s{_utmrsRemoteAccessAllowed = a})  -- | The project role granted to the user. utmrsProjectRole :: Lens' UpdateTeamMemberResponse (Maybe Text)-utmrsProjectRole = lens _utmrsProjectRole (\ s a -> s{_utmrsProjectRole = a});+utmrsProjectRole = lens _utmrsProjectRole (\ s a -> s{_utmrsProjectRole = a})  -- | -- | The response status code. utmrsResponseStatus :: Lens' UpdateTeamMemberResponse Int-utmrsResponseStatus = lens _utmrsResponseStatus (\ s a -> s{_utmrsResponseStatus = a});+utmrsResponseStatus = lens _utmrsResponseStatus (\ s a -> s{_utmrsResponseStatus = a})  instance NFData UpdateTeamMemberResponse where
gen/Network/AWS/CodeStar/UpdateUserProfile.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodeStar.UpdateUserProfile--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated@@ -77,28 +77,28 @@     -> UpdateUserProfile updateUserProfile pUserARN_ =   UpdateUserProfile'-  { _uupSshPublicKey = Nothing-  , _uupEmailAddress = Nothing-  , _uupDisplayName = Nothing-  , _uupUserARN = pUserARN_-  }+    { _uupSshPublicKey = Nothing+    , _uupEmailAddress = Nothing+    , _uupDisplayName = Nothing+    , _uupUserARN = pUserARN_+    }   -- | The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access. uupSshPublicKey :: Lens' UpdateUserProfile (Maybe Text)-uupSshPublicKey = lens _uupSshPublicKey (\ s a -> s{_uupSshPublicKey = a});+uupSshPublicKey = lens _uupSshPublicKey (\ s a -> s{_uupSshPublicKey = a})  -- | The email address that is displayed as part of the user's profile in AWS CodeStar. uupEmailAddress :: Lens' UpdateUserProfile (Maybe Text)-uupEmailAddress = lens _uupEmailAddress (\ s a -> s{_uupEmailAddress = a}) . mapping _Sensitive;+uupEmailAddress = lens _uupEmailAddress (\ s a -> s{_uupEmailAddress = a}) . mapping _Sensitive  -- | The name that is displayed as the friendly name for the user in AWS CodeStar. uupDisplayName :: Lens' UpdateUserProfile (Maybe Text)-uupDisplayName = lens _uupDisplayName (\ s a -> s{_uupDisplayName = a});+uupDisplayName = lens _uupDisplayName (\ s a -> s{_uupDisplayName = a})  -- | The name that will be displayed as the friendly name for the user in AWS CodeStar. uupUserARN :: Lens' UpdateUserProfile Text-uupUserARN = lens _uupUserARN (\ s a -> s{_uupUserARN = a});+uupUserARN = lens _uupUserARN (\ s a -> s{_uupUserARN = a})  instance AWSRequest UpdateUserProfile where         type Rs UpdateUserProfile = UpdateUserProfileResponse@@ -179,42 +179,42 @@     -> UpdateUserProfileResponse updateUserProfileResponse pResponseStatus_ pUserARN_ =   UpdateUserProfileResponse'-  { _uuprsLastModifiedTimestamp = Nothing-  , _uuprsSshPublicKey = Nothing-  , _uuprsEmailAddress = Nothing-  , _uuprsDisplayName = Nothing-  , _uuprsCreatedTimestamp = Nothing-  , _uuprsResponseStatus = pResponseStatus_-  , _uuprsUserARN = pUserARN_-  }+    { _uuprsLastModifiedTimestamp = Nothing+    , _uuprsSshPublicKey = Nothing+    , _uuprsEmailAddress = Nothing+    , _uuprsDisplayName = Nothing+    , _uuprsCreatedTimestamp = Nothing+    , _uuprsResponseStatus = pResponseStatus_+    , _uuprsUserARN = pUserARN_+    }   -- | The date the user profile was last modified, in timestamp format. uuprsLastModifiedTimestamp :: Lens' UpdateUserProfileResponse (Maybe UTCTime)-uuprsLastModifiedTimestamp = lens _uuprsLastModifiedTimestamp (\ s a -> s{_uuprsLastModifiedTimestamp = a}) . mapping _Time;+uuprsLastModifiedTimestamp = lens _uuprsLastModifiedTimestamp (\ s a -> s{_uuprsLastModifiedTimestamp = a}) . mapping _Time  -- | The SSH public key associated with the user in AWS CodeStar. This is the public portion of the public/private keypair the user can use to access project resources if a project owner allows the user remote access to those resources. uuprsSshPublicKey :: Lens' UpdateUserProfileResponse (Maybe Text)-uuprsSshPublicKey = lens _uuprsSshPublicKey (\ s a -> s{_uuprsSshPublicKey = a});+uuprsSshPublicKey = lens _uuprsSshPublicKey (\ s a -> s{_uuprsSshPublicKey = a})  -- | The email address that is displayed as part of the user's profile in AWS CodeStar. uuprsEmailAddress :: Lens' UpdateUserProfileResponse (Maybe Text)-uuprsEmailAddress = lens _uuprsEmailAddress (\ s a -> s{_uuprsEmailAddress = a}) . mapping _Sensitive;+uuprsEmailAddress = lens _uuprsEmailAddress (\ s a -> s{_uuprsEmailAddress = a}) . mapping _Sensitive  -- | The name that is displayed as the friendly name for the user in AWS CodeStar. uuprsDisplayName :: Lens' UpdateUserProfileResponse (Maybe Text)-uuprsDisplayName = lens _uuprsDisplayName (\ s a -> s{_uuprsDisplayName = a});+uuprsDisplayName = lens _uuprsDisplayName (\ s a -> s{_uuprsDisplayName = a})  -- | The date the user profile was created, in timestamp format. uuprsCreatedTimestamp :: Lens' UpdateUserProfileResponse (Maybe UTCTime)-uuprsCreatedTimestamp = lens _uuprsCreatedTimestamp (\ s a -> s{_uuprsCreatedTimestamp = a}) . mapping _Time;+uuprsCreatedTimestamp = lens _uuprsCreatedTimestamp (\ s a -> s{_uuprsCreatedTimestamp = a}) . mapping _Time  -- | -- | The response status code. uuprsResponseStatus :: Lens' UpdateUserProfileResponse Int-uuprsResponseStatus = lens _uuprsResponseStatus (\ s a -> s{_uuprsResponseStatus = a});+uuprsResponseStatus = lens _uuprsResponseStatus (\ s a -> s{_uuprsResponseStatus = a})  -- | The Amazon Resource Name (ARN) of the user in IAM. uuprsUserARN :: Lens' UpdateUserProfileResponse Text-uuprsUserARN = lens _uuprsUserARN (\ s a -> s{_uuprsUserARN = a});+uuprsUserARN = lens _uuprsUserARN (\ s a -> s{_uuprsUserARN = a})  instance NFData UpdateUserProfileResponse where
gen/Network/AWS/CodeStar/Waiters.hs view
@@ -7,7 +7,7 @@  -- | -- Module      : Network.AWS.CodeStar.Waiters--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated
test/Main.hs view
@@ -2,7 +2,7 @@  -- | -- Module      : Main--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated
test/Test/AWS/CodeStar.hs view
@@ -1,6 +1,6 @@ -- | -- Module      : Test.AWS.CodeStar--- Copyright   : (c) 2013-2016 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated
test/Test/AWS/CodeStar/Internal.hs view
@@ -1,6 +1,6 @@ -- | -- Module      : Test.AWS.CodeStar.Internal--- Copyright   : (c) 2013-2016 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated
test/Test/AWS/Gen/CodeStar.hs view
@@ -5,7 +5,7 @@  -- | -- Module      : Test.AWS.Gen.CodeStar--- Copyright   : (c) 2013-2017 Brendan Hay+-- Copyright   : (c) 2013-2018 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com> -- Stability   : auto-generated