Tim Finnigan

Results 395 comments of Tim Finnigan

Hi @seunggabi thanks for reaching out. Could you elaborate a bit more on the feature you're requesting here? It would help to know which service/command you're using and what your...

Hi @mdaniel thanks for reaching out. The model for this paginator is defined [here](https://github.com/boto/botocore/blob/f482cb8f47b3c91a87f6eb45f7c57199b801bb85/botocore/data/lambda/2015-03-31/paginators-1.json#L9). There are some inconsistencies in how service APIs name their markers/tokens. Marker is a [request parameter](https://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctions.html#API_ListFunctions_RequestParameters)...

I think this comment on an older issue might help clear up some of the behavior around pagination: https://github.com/aws/aws-cli/issues/2555#issuecomment-295825435 For more information on `--generate-cli-skeleton` and `--cli-input-json` I would refer to...

AWS IAM Identity Center is now the successor to SSO per this documentation: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html. @SARAVANA1501 you mentioned using Azure AD, so I think this is the specific documentation you should...

Thanks @alonbl for the feature request. I brought this up for discussion with the team and it seemed like something they may be receptive to doing. However more research is...

Hi @chethanuk-plutoflume thanks for reaching out. In that [documentation](https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-supported-instance-types.html) you linked to it notes: > Not all instance types are available in all Regions, and instance availability is subject to...

Thanks @aguckenber-chwy for the feature request. I brought this up for discussion with the team and it's a change that they may be open to considering. Would you be willing...

Hi @aguckenber-chwy thanks for following up. Yes our team owns the botocore and s3transfer repositories as well. Also support for Python 3.6 and earlier is deprecated as [noted here](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/quickstart.html) so...

Hello and thanks for reaching out. It looks like the example should be: ``` aws ec2 modify-security-group-rules --group-id sg-1234567890abcdef0 --security-group-rules SecurityGroupRuleId=sgr-abcdef01234567890,SecurityGroupRule={{Description=test},{IpProtocol=-1},{CidrIpv4=0.0.0.0/0}} ``` I created the PR linked above to update...

This seems to be due to an underlying issue with how some shorthand syntax examples are generated. Other services affected include [SNS](https://github.com/aws/aws-cli/issues/5129) and [SQS](https://github.com/aws/aws-cli/issues/3637). Some further investigation is required into...