sitewise_export_tools/asset_model_exporter.py [19:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
args = parser.parse_args()

#Setup the AWS SiteWise boto3 client
if args.profile:
    boto3.setup_default_session(profile_name=args.profile)
if args.region:
    my_config = Config(region_name=args.region)
else:
    my_config = Config()
client = boto3.client('iotsitewise', config=my_config)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sitewise_monitor_dashboard_replicator/sitewise_dashboard_replicator.py [20:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
args = parser.parse_args()

#Setup the AWS SiteWise boto3 client
if args.profile:
    boto3.setup_default_session(profile_name=args.profile)
if args.region:
    my_config = Config(region_name=args.region)
else:
    my_config = Config()
client = boto3.client('iotsitewise', config=my_config)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



