Wednesday, April 19, 2023

How to give privilege for access of single aws bucket ..

 {

    "Version": "2012-10-17",

    "Statement": [

        {

            "Effect": "Allow",

            "Action": [

                "s3:PutObject",

                "s3:ListBucket"

            ],

            "Resource": "arn:aws:s3:::bucket_name*"

        }

    ]

}


$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

After aws cli configure on windows machine . we can list the bucket.

$ aws s3 ls s3://bucket_name/




How to give privilege for access of single aws bucket ..

 {     "Version": "2012-10-17",     "Statement": [         {             "Effect": "Allow"...