<#CDE799L1M|python> I am new to pulumi. Trying to ...
# python
g
#python I am new to pulumi. Trying to combine pulumi and boto3 for my use case but getting below error
botocore.exceptions.ParamValidationError: Parameter validation failed:
Invalid type for parameter BucketArn, value: Calling __str__ on an Output[T] is not supported
Here is the code snippet:
Copy code
import pulumi
import pulumi_aws as aws
import boto3

# Create an AWS S3 Bucket using Pulumi
bucket = aws.s3.Bucket("my-bucket")

# Obtain the ARN of the S3 Bucket from the Pulumi resource
bucket_arn = bucket.arn

# Use Boto3 with the ARN
s3_client = boto3.client("s3")
response = s3_client.list_objects_v2(Bucket=bucket_arn)

# Process the response from Boto3 as needed
for obj in response.get("Contents", []):
    print(obj["Key"])
c
Copy code
bucket.arn.apply(lambda v:

  s3_client = boto3.client("s3")
  response =    s3_client.list_objects_v2(Bucket=v)

  for obj in response.get("Contents", []):
      print(obj["Key"])
)
Somehitng like this should be
g
@clever-kite-79772 syntax error.
c
@great-spring-37193 I know about syntax error - it's just the general idea. If you'd like to use boto3 + pulumi, than you have to use all boto3 code within lamda.
g
Thanks but want to take that response outside that lambda but pulumi providing only Output[T].
c
You can't get response outside lambda. Pulumi doesn't provide it.